/* ======= ESTILOS GERAIS ======= */
:root {
  --cor-primaria: #af811c;
  --cor-fundo: #0b0a0a;
  --cor-texto: #af811c;
  --fonte-principal: "Montserrat", sans-serif;
  --fonte-titulos: "Cinzel", serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--fonte-principal);
  background-color: var(--cor-fundo);
  color: var(--cor-texto);
  line-height: 1.6;
}

/* ======= CABEÇALHO ======= */
header {
  background-color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 10%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 10;
}

.logo {
  font-family: var(--fonte-titulos);
  font-size: 1.6rem;
  color: var(--cor-primaria);
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
}

nav a {
  color: var(--cor-texto);
  text-decoration: none;
  margin-left: 20px;
  font-weight: 600;
  transition: color 0.3s;
}

nav a:hover {
  color: var(--cor-primaria);
}

/* ======= HERO ======= */
.hero {
  background: url("https://images.unsplash.com/photo-1602016753354-3f60a93e08b4?auto=format&fit=crop&w=1600&q=80") center/cover no-repeat;
  color: white;
  text-align: center;
  padding: 120px 20px;
}

.hero h1 {
  font-family: var(--fonte-titulos);
  font-size: 2.8rem;
  margin-bottom: 15px;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.4);
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 20px;
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
}

.btn {
  display: inline-block;
  background-color: var(--cor-primaria);
  color: white;
  padding: 10px 25px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s;
}

.btn:hover {
  background-color: #9c834b;
}

/* ======= PRODUTOS ======= */
.produtos {
  max-width: 1100px;
  margin: 60px auto;
  padding: 0 20px;
  text-align: center;
}

.produtos h2 {
  font-family: var(--fonte-titulos);
  color: var(--cor-primaria);
  margin-bottom: 40px;
  font-size: 2rem;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.card {
  background-color: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s;
}

.card:hover {
  transform: translateY(-5px);
}

.card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.info {
  padding: 15px;
}

.info h3 {
  font-family: var(--fonte-titulos);
  color: var(--cor-primaria);
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.info p {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 10px;
}

.preco {
  font-weight: bold;
  color: var(--cor-primaria);
  font-size: 1.1rem;
  margin-bottom: 10px;
}

/* ======= SOBRE ======= */
.sobre {
  background-color: #fff;
  padding: 60px 20px;
  text-align: center;
}

.sobre h2 {
  font-family: var(--fonte-titulos);
  color: var(--cor-primaria);
  margin-bottom: 20px;
}

.sobre p {
  max-width: 700px;
  margin: 0 auto;
  color: #555;
  font-size: 1rem;
}

/* ======= RODAPÉ ======= */
footer {
  background-color: #222;
  color: white;
  text-align: center;
  padding: 20px;
  margin-top: 60px;
}

footer a {
  color: var(--cor-primaria);
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

footer small {
  display: block;
  color: #aaa;
  margin-top: 5px;
}

/* ======= RESPONSIVIDADE ======= */
@media (max-width: 700px) {
  nav {
    display: none;
  }
  .logo {
    font-size: 1.3rem;
  }
  .hero h1 {
    font-size: 2rem;
  }
}
