/* ===== RESET ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background-color: #fffafc;
  color: #333;
  scroll-behavior: smooth;
}

/* ===== CABEÇALHO ===== */
.topo {
  background-color: #fbeff5;
  padding: 10px 0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.topo-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

/* ===== LOGO ===== */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  height: 50px;
}

.logo h1 {
  font-family: 'Great Vibes', cursive;
  font-size: 1.8rem;
  color: #c2185b;
}

/* ===== BARRA DE PESQUISA CENTRAL ===== */
.barra-pesquisa {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  border-radius: 25px;
  max-width: 400px;
  box-shadow: 0 0 8px rgba(0,0,0,0.1);
  overflow: hidden;
}

.barra-pesquisa input {
  border: none;
  outline: none;
  padding: 10px 14px;
  font-family: 'Poppins', sans-serif;
  width: 100%;
}

.barra-pesquisa button {
  border: none;
  background-color: #c2185b;
  color: #fff;
  padding: 10px 14px;
  cursor: pointer;
  transition: 0.3s;
}

.barra-pesquisa button:hover {
  background-color: #a3154d;
}

/* ===== MENU ===== */
.menu ul {
  display: flex;
  list-style: none;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}

.menu a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  background-color: #c2185b;
  padding: 8px 18px;
  border-radius: 20px;
  transition: 0.3s ease;
}

.menu a:hover {
  background-color: #a3154d;
}

/* ===== RESPONSIVIDADE ===== */
@media (max-width: 900px) {
  .topo-flex {
    flex-direction: column;
    gap: 1rem;
  }

  .barra-pesquisa {
    order: 3;
    max-width: 90%;
  }

  .menu ul {
    flex-wrap: wrap;
    justify-content: center;
  }
}


/* ===== HERO ===== */
.hero {
  background: url('../imagens/fundo.webp') center center/cover no-repeat;
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.4); /* escurece levemente a imagem para destacar o texto */
}

.hero-conteudo {
  position: relative;
  z-index: 2;
  animation: fadeIn 2s ease;
}

.hero h2 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

.btn {
  background: #b30059;
  color: #fff;
  padding: 10px 25px;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  transition: 0.3s;
}

.btn:hover {
  background: #ff4da6;
  transform: scale(1.05);
}

/* ===== PRODUTOS ===== */
.produtos {
  padding: 100px 5% 60px;
  text-align: center;
}

.produtos h2 {
  font-size: 2rem;
  color: #b30059;
  margin-bottom: 2rem;
}

.grid-produtos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.card {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  transition: 0.3s;
  overflow: hidden;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

.card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.card h3 {
  margin: 10px 0 5px;
  color: #333;
}

.card p {
  font-weight: bold;
  color: #b30059;
  margin-bottom: 10px;
}

/* ===== EFEITO ZOOM NOS CARDS ===== */
.zoom {
  transition: transform 0.4s ease, box-shadow 0.3s ease;
}

.zoom:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}


/* ===== SEÇÃO OFERTAS ===== */
.ofertas {
  background: #fff0f6;
  padding: 80px 10%;
  text-align: center;
}

.ofertas h2 {
  color: #b30059;
  margin-bottom: 1rem;
}

.ofertas p {
  margin-bottom: 2rem;
  color: #555;
}

/* ===== SOBRE NÓS ===== */
.sobre {
  background: #fff0f6;
  padding: 120px 10% 80px;
  text-align: center;
}

.sobre h2 {
  color: #b30059;
  margin-bottom: 1rem;
  font-size: 2rem;
}

.sobre p {
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8;
  color: #444;
}

/* ===== CONTATO ===== */
.contato {
  padding: 120px 10% 80px;
  text-align: center;
}

.contato h2 {
  color: #b30059;
  margin-bottom: 1rem;
  font-size: 2rem;
}

form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

input, textarea {
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 10px;
  resize: none;
}

textarea {
  min-height: 120px;
}

/* ===== IMAGENS DE SEÇÕES (Sobre e Contato) ===== */
.img-secao {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  border-radius: 15px;
  margin-bottom: 2rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* ===== RODAPÉ ===== */
.rodape {
  background: #b30059;
  color: #fff;
  text-align: center;
  padding: 20px;
  margin-top: 60px;
}

/* ===== ANIMAÇÕES ===== */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===== RESPONSIVO ===== */
@media (max-width: 768px) {
  header .container {
    flex-direction: column;
  }

  .menu ul {
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 10px;
  }

  .hero {
    height: 70vh;
  }

  .hero h2 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .grid-produtos {
    grid-template-columns: 1fr;
  }

  .img-secao {
    max-height: 250px;
  }
}
