/* CSS Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

/* Seção Hero com Imagem de Fundo */
.hero {
  background-image:
    linear-gradient(rgba(101, 67, 33, 0.7), rgba(101, 67, 33, 0.7)),
    url("../images/breads.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Overlay Escuro */
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(
    101,
    67,
    33,
    0.332
  ); /* Tom marrom para combinar com os pães */
  z-index: 1;
}

/* Conteúdo Sobreposto */
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  max-width: 800px;
  padding: 3rem 2rem;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(2px);
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 1s ease-out;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  color: #ffe4b5;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  font-weight: bold;
}

.hero .subtitle {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #ffe4b5;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  font-style: italic;
}

.hero p {
  font-size: 1.3rem;
  margin-bottom: 2.5rem;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
  line-height: 1.8;
  color: #fff8dc;
}

.cta-button {
  background: linear-gradient(45deg, #d2691e, #b8860b);
  color: white;
  padding: 1.2rem 3rem;
  border: none;
  border-radius: 50px;
  font-size: 1.2rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.4s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(210, 105, 30, 0.4);
}

.cta-button:hover {
  background: linear-gradient(45deg, #b8860b, #daa520);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(210, 105, 30, 0.6);
}

/* Seção Produtos */
.produtos {
  padding: 5rem 2rem;
  background: -o-linear-gradient(135deg, #fff8dc, #f5deb3);
  text-align: center;
}

.produtos h2 {
  font-size: 2.8rem;
  color: #8b4513;
  margin-bottom: 1rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.produtos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 3rem auto 0;
}

.produto-card {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(139, 69, 19, 0.2);
  transition: transform 0.3s ease;
  border: 2px solid #f5deb3;
}

.produto-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(139, 69, 19, 0.3);
}

.produto-icon {
  font-size: 3rem;
  color: #d2691e;
  margin-bottom: 1rem;
}

.produto-card h3 {
  font-size: 1.5rem;
  color: #8b4513;
  margin-bottom: 1rem;
}

.produto-card p {
  color: #666;
  line-height: 1.6;
}

/* Seção Sobre */
.sobre {
  padding: 5rem 2rem;
  background: #8b4513;
  color: white;
  text-align: center;
}

.sobre h2 {
  font-size: 2.8rem;
  margin-bottom: 2rem;
  color: #f5deb3;
}

.sobre p {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
}

/* Footer */
.footer {
  background: #654321;
  color: white;
  padding: 3rem 2rem;
  text-align: center;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.footer h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: #f5deb3;
}

.footer p,
.footer a {
  color: #ddd;
  text-decoration: none;
  margin-bottom: 0.5rem;
  display: block;
}

.footer a:hover {
  color: #f5deb3;
  transition: color 0.3s ease;
}

/* Responsivo */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.5rem;
  }

  .hero .subtitle {
    font-size: 1.3rem;
  }

  .hero p {
    font-size: 1.1rem;
  }

  .hero-content {
    padding: 2rem 1rem;
  }

  .hero {
    background-attachment: scroll;
  }
}

/* Animações */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transition: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== ESTILOS DA PÁGINA DE PRODUTOS ====== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Arial", sans-serif;
  line-height: 1.6;
  background-color: #fff8dc;
}

/* Header/Navegação */
.header {
  background: linear-gradient(135deg, #8b4513, #654321);
  padding: 1rem 2rem;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.logo {
  color: #f5deb3;
  font-size: 1.8rem;
  font-weight: bold;
  text-decoration: none;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-links a {
  color: #f5deb3;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #ffe4b5;
}

/* Hero da página de produtos */
.produtos-hero {
  background:
    linear-gradient(rgba(139, 69, 19, 0.551), rgba(101, 67, 33, 0.8)),
    url("../images/biblia-pao-vimnho.jpg");
  background-size: cover;
  background-position: center;
  padding: 4rem 2rem;
  text-align: center;
  color: white;
}

.produtos-hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: #ffe4b5;
}

.produtos-hero p {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto;
}

/* Container principal */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Seção de produtos em destaque */
.produtos-destaque {
  padding: 4rem 0;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  color: #8b4513;
  margin-bottom: 3rem;
}

.produtos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.produto-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(139, 69, 19, 0.15);
  transition: transform 0.3s ease;
}

.produto-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(139, 69, 19, 0.25);
}

.produto-img {
  width: 100%;
  height: 200px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.preco-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: #d2691e;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-weight: bold;
}

.produto-info {
  padding: 1.5rem;
}

.produto-info h3 {
  color: #8b4513;
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.produto-info p {
  color: #666;
  margin-bottom: 1rem;
  line-height: 1.5;
}

.ingredientes {
  font-size: 0.9rem;
  color: #888;
  margin-bottom: 1rem;
  font-style: italic;
}

.btn-whatsapp {
  background: #25d366;
  color: white;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: bold;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-whatsapp:hover {
  background: #20ba5a;
  transform: translateY(-2px);
}

.mapa-container {
  background: rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: 15px;
  margin: 2rem auto;
  max-width: 600px;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  background: #20ba5a;
}

/* Depoimentos */
.depoimentos {
  padding: 4rem 0;
  background: linear-gradient(135deg, #f5deb3, #ffe4b5);
}

.depoimentos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.depoimento-card {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 3px 15px rgba(139, 69, 19, 0.1);
  text-align: center;
}

.estrelas {
  color: #d2691e;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.depoimento-texto {
  font-style: italic;
  color: #666;
  margin-bottom: 1rem;
}

.depoimento-autor {
  color: #8b4513;
  font-weight: bold;
}

.main-section {
  padding: 50px;
  max-width: 1200px;
  margin: 0 auto;
}

.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 40px;
}

.info-card {
  background: rgba(139, 69, 19, 0.8);
  padding: 30px;
  border-radius: 15px;
  text-align: center;
}

.info-card h3 {
  margin-bottom: 15px;
  font-size: 20px;
}

.address-card {
  grid-column: 1 / -1;
  background: rgba(139, 69, 19, 0.8);
  padding: 25px;
  border-radius: 15px;
  text-align: center;
}

.google-maps-btn {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 20px;
  background: #4caf50;
  color: white;
  text-decoration: none;
  border-radius: 5px;
}

.contact-highlight {
  text-align: center;
  margin-top: 30px;
}

.whatsapp-btn {
  display: inline-block;
  padding: 15px 30px;
  background: #25d366;
  color: white;
  text-decoration: none;
  border-radius: 25px;
  font-size: 18px;
  font-weight: bold;
  margin-top: 15px;
}

/* Footer */
.footer {
  background: #654321;
  color: white;
  padding: 3rem 2rem;
  text-align: center;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.footer h4 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: #f5deb3;
}

.footer p,
.footer a {
  color: #ddd;
  text-decoration: none;
  margin-bottom: 0.5rem;
  display: block;
}

.footer a:hover {
  color: #f5deb3;
  transition: color 0.3s ease;
}

/* Responsivo */
@media (max-width: 768px) {
  .nav {
    flex-direction: column;
    gap: 1rem;
  }

  .nav-links {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .produtos-hero h1 {
    font-size: 2rem;
  }

  .produtos-grid {
    grid-template-columns: 1fr;
  }

  .whatsapp-float {
    width: 50px;
    height: 50px;
    font-size: 24px;
    bottom: 20px;
    right: 20px;
  }
}
