

/* ==========================
   HERO / SLIDER
========================== */
.hero {
    position: relative;
    width: 100%;
    height: clamp(280px, 40vw, 520px);
    overflow: hidden;
    background: #000;
}
.slide::after {
    pointer-events: none;
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.55),
        rgba(0,0,0,0.1),
        rgba(0,0,0,0)
    );
    z-index: 1;
}


.slider {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 80%;
    background: transparent;
}


/* CONTEÚDO HERO */
.hero-content {
    position: absolute;
    bottom: 15%;
    left: 8%;
    z-index: 2;
}

.btn-primary {
    display: inline-block;
    padding: clamp(10px, 1.6vw, 18px) clamp(22px, 3.5vw, 44px);
    background: linear-gradient(135deg, #f5c451, #c9972b);
    color: #1a1a1a;
    font-size: clamp(12px, 1.2vw, 15px);
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    border-radius: 40px;
    box-shadow: 
        0 0 0 4px rgba(255,255,255,0.15),
        0 15px 40px rgba(0,0,0,0.5);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 
        0 0 0 6px rgba(255,255,255,0.25),
        0 20px 50px rgba(0,0,0,0.6);
}

/* BOTÕES SLIDER */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.4);
    border: none;
    color: #fff;
    font-size: 28px;
    padding: 5px 10px;
    cursor: pointer;
    border-radius: 10px;
    z-index: 3;
}

.slider-btn.prev {
    left: 20px;
}

.slider-btn.next {
    right: 20px;
}

.trust-strip {
  background: #fffaf0;
  border-bottom: 1px solid #eadfca;
}

.trust-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
}

.trust-strip-grid span {
  color: #3a2a1a;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.4px;
  padding: 16px 10px;
  text-align: center;
  text-transform: uppercase;
}

/* ==========================
   SOBRE NÓS
========================== */

.about-summary {
    background-color: #fff;
    padding: 80px 0;
}

.about-grid {
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 12px;
}

.about-text {
    flex: 1;
}

.about-text .subtitle {
    display: block;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #c9972b;
    margin-bottom: 1px;
}

.about-text h2 {
    font-size: 36px;
    margin-bottom: 16px;
}

.about-text p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 24px;
}

.btn-secondary {
  display: inline-block;
  padding: clamp(10px, 1.3vw, 14px) clamp(18px, 3vw, 34px);
  background: linear-gradient(135deg, #f5c451, #c9972b);
  color: #1a1a1a;
  font-weight: 600;
  font-size: clamp(12px, 1.1vw, 15px);
  border-radius: 30px;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 35px rgba(0,0,0,0.35);
}

/* ==========================
   BENEFÍCIOS (CARDS)
========================== */
.benefits {
  background-color: #fff;
  padding: 70px 0;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: stretch;
}

.benefit-card {
  background: linear-gradient(180deg, #fffaf1, #ffffff);
  border: 1px solid #efe2c6;
  border-radius: 16px;
  padding: 26px 22px;
  text-align: center;
  box-shadow: 0 14px 30px rgba(31, 26, 18, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(31, 26, 18, 0.15);
}

.benefit-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #1f1a12;
  color: #fff;
  font-size: 22px;
  margin: 0 auto 14px;
  box-shadow: 0 10px 24px rgba(0,0,0,0.18);
}

.benefit-card h3 {
  font-size: 16px;
  margin-bottom: 8px;
}

.benefit-card p {
  font-size: 14px;
  line-height: 1.7;
  color: #3e3a30;
}

@media (max-width: 1000px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .trust-strip-grid {
    grid-template-columns: 1fr 1fr;
  }

  .trust-strip-grid span {
    font-size: 11px;
    padding: 12px 8px;
  }

  .benefits {
    padding: 52px 0;
  }
  .benefits-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================
   PRODUTOS
========================== */

.products-preview {
    padding: 100px 0;
    background: radial-gradient(
        circle at top,
        #7a4a1f,
        #5a3314
    );
}

.section-title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: #ffffff;
}

.products-carousel {
    position: relative;
    display: flex;
    align-items: center;
}

.product-track {
  display: flex;
  gap: 64px;
  justify-content: center;
  width: 100%;
  padding: 0 80px; 
  flex-wrap: nowrap; 
}


.product-card {
    background-color: #fff;
    border-radius: 14px;
    padding: 24px;
    text-align: left;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    flex: 0 0 360px; 
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
}

.product-top{
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.product-media{
    flex: 0 0 160px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-card img {
    width: 160px;
    height: 160px;
    object-fit: cover;
    border-radius: 8px;
}

.product-info{
    flex: 1;
}

.product-head{
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
}

.product-card h3 {
    font-size: 16px;
    margin: 0;
}

.product-card .price {
    font-size: 16px;
    font-weight: bold;
    margin: 0;
}

.product-mini{
  margin: 10px 0 0;
  color: #3e3a30;
  font-size: 14px;
  line-height: 1.6;
}

.product-cta{
  align-self: center;
}

@media (max-width: 900px) {
  .product-card{
    flex-direction: column;
    text-align: center;
  }
  .product-top{
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .product-media{
    flex: 0 0 auto;
  }
  .product-card img{
    width: 160px;
    height: 160px;
  }
}

.btn-add {
    padding: 12px 20px;
    background-color: #c9972b;
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-add:hover {
    background-color: #333;
}



.about-home {
  background-color: #fff;
  padding: 100px 0;
}

.about-home-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-home-text .subtitle {
  display: block;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #c9972b;
  margin-bottom: 12px;
}

.about-home-text h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.about-home-text p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 16px;
}

.about-home-image img {
  width: 100%;
  border-radius: 16px;
}
.newsletter-box h3 {
    font-size: 32px;
    margin-bottom: 12px;
}

.newsletter-box p {
    font-size: 16px;
    margin-bottom: 32px;
}

.newsletter-form {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.newsletter-form input {
    padding: 14px 18px;
    border-radius: 8px;
    border: 1px solid #ccc;
    min-width: 240px;
}

.newsletter-form button {
    padding: 14px 32px;
    border: none;
    border-radius: 8px;
    background-color: #c9972b;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
}

.newsletter-form button:hover {
    background-color: #333;
}

/* =========================================================
   HOME FIXES (ABOUT-HOME + GALLERY + NEWSLETTER)
========================================================= */

/* ---------- ABOUT HOME (Quem somos) ---------- */
.about-home{
  background: #fff;
  padding: 80px 0;               
}

.about-home-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;                    
  align-items: center;
}

.about-home-text{
  max-width: 560px;
}

.about-home-text .subtitle{
  display: inline-block;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #c9972b;
  margin-bottom: 10px;
}

.about-home-text h2{
  font-size: 34px;
  margin-bottom: 14px;
  line-height: 1.2;
}

.about-home-text p{
  font-size: 16px;               
  line-height: 1.7;
  margin-bottom: 12px;
  color: #3e3a30;
}

.about-home-image{
  display: flex;
  justify-content: center;
}

.about-home-image img{
  width: 100%;
  max-width: 440px;             
  height: auto;
  max-height: 320px;
  object-fit: cover;
  border-radius: 16px;
  display: block;
  box-shadow: 0 18px 40px rgba(31, 26, 18, 0.25);
  border: 2px solid #efe2c6;
}





/* ---------- NEWSLETTER (centralizada e bonita) ---------- */
.newsletter{
  background: var(--bg-papel);
  padding: 48px 0 60px;
  text-align: center;
}

.newsletter-box{
  max-width: 980px;
  margin: 0 auto;
}

.newsletter-box h3{
  font-size: 30px;
  margin-bottom: 10px;
}

.newsletter-box p{
  font-size: 15px;
  margin-bottom: 24px;
  color: #3e3a30;
}

.newsletter-form{
  display: grid;
  grid-template-columns: 1fr 1fr 1.2fr auto; 
  gap: 12px;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  width: 100%;
}

.newsletter-form input{
  width: 100%;
  padding: 14px 14px;
  border-radius: 10px;
  border: 1px solid #d7cdb5;
  outline: none;
}

.newsletter-form input:focus{
  border-color: #c9972b;
}

.newsletter-form button{
  padding: 14px 22px;
  border: none;
  border-radius: 10px;
  background: #c9972b;
  color: #fff;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
}

.newsletter-form button:hover{
  background: #333;
}

/* ==========================
   NEWSLETTER - RESPONSIVO (FIX)
   Cole no FINAL do tela_home.css
========================== */

.newsletter-form{
  display: grid !important;
  grid-template-columns: 1fr 1fr 1.2fr auto; 
  gap: 12px !important;
  align-items: center;
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
}


.newsletter-form input{
  min-width: 0 !important;
  width: 100%;
  box-sizing: border-box;
}

.newsletter-form button{
  width: 100%;
  white-space: nowrap;
}

@media (max-width: 900px){
  .newsletter-form{
    grid-template-columns: 1fr 1fr; 
  }

 
  .newsletter-form input[type="email"]{
    grid-column: 1 / -1;
  }
  .newsletter-form button{
    grid-column: 1 / -1;
  }
}


@media (max-width: 600px){
  .newsletter-form{
    grid-template-columns: 1fr; 
  }
}


/* ===== GALERIA FULL WIDTH (FORÇA TOTAL) ===== */
.production-gallery{
  width: 100vw !important;
  margin-left: calc(50% - 50vw) !important;
  margin-right: calc(50% - 50vw) !important;
  padding: 0 !important;
  background: var(--bg-papel);
}

.gallery-track{
  width: 100vw !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;

  display: block !important;
}

.gallery-track img{
  width: 100% !important;
  height: 360px !important;
  display: block !important;
  object-fit: cover !important;
  object-position: center !important;
  border-radius: 0 !important;
  transform: none !important;   
}

.bulk-home-cta{
  min-height: 360px;
  display: flex;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(17, 54, 26, 0.96), rgba(17, 54, 26, 0.78) 48%, rgba(17, 54, 26, 0.18)),
    url("../images/2_Banner.png") center bottom / cover no-repeat !important;
  color: #fff;
}

.bulk-home-grid{
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 32px;
}

.bulk-home-copy{
  max-width: 720px;
}

.bulk-home-eyebrow{
  display: inline-block;
  margin-bottom: 12px;
  color: #f0cf74;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.bulk-home-copy h2{
  margin-bottom: 12px;
  color: #fffaf0;
  font-family: "Playfair Display", serif;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.05;
}

.bulk-home-copy p{
  max-width: 660px;
  color: rgba(255,255,255,0.92);
  font-size: 18px;
  line-height: 1.55;
}

.bulk-home-button{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 28px;
  border-radius: 10px;
  background: linear-gradient(135deg, #f7d985, #d8a94a);
  color: #1a1a1a;
  font-weight: 900;
  text-transform: uppercase;
  box-shadow: 0 16px 34px rgba(0,0,0,0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
}

.bulk-home-button:hover{
  transform: translateY(-2px);
  box-shadow: 0 20px 44px rgba(0,0,0,0.36);
}





/* ==========================
   HOME - RESPONSIVO (FIX REAL)
   Cole no FINAL do tela_home.css
========================== */

/* TABLET */
@media (max-width: 900px) {
  /* SOBRE NÓS (primeiro bloco) */
  .about-grid{
    flex-direction: column;
    gap: 28px;
  }

  .about-image img{
    max-width: 100%;
  }

  /* QUEM SOMOS (about-home) */
  .about-home-grid{
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .about-home-image img{
    max-width: 520px;
    margin: 0 auto;
  }

  /* PRODUTOS */
  .product-track{
    flex-wrap: wrap;
    justify-content: center;
    padding: 0 16px;
    gap: 18px;
  }

  .product-card{
    flex: 0 1 260px; 
  }

  .bulk-home-grid{
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .bulk-home-button{
    justify-self: start;
  }
}

/* MOBILE */
@media (max-width: 600px) {
  /* QUEM SOMOS */
  .about-home{
    padding: 56px 0;
  }

  .about-home-text h2{
    font-size: 28px;
  }

  
  .products-preview{
    padding: 56px 0;
  }

  .section-title{
    font-size: 28px;
    margin-bottom: 26px;
  }

  .product-track{
    flex-wrap: wrap;
    padding: 0 14px;
    gap: 14px;
  }

  .product-card{
    flex: 1 1 100%;
    max-width: 420px;
  }

  .product-card img{
    max-width: 160px;
  }

  .bulk-home-cta{
    min-height: 420px;
    background:
      linear-gradient(180deg, rgba(17, 54, 26, 0.96), rgba(17, 54, 26, 0.72)),
      url("../images/2_Banner.png") center bottom / cover no-repeat !important;
  }

  .bulk-home-copy p{
    font-size: 16px;
  }

  .bulk-home-button{
    width: 100%;
  }
}

/* ==========================
   CHAT WIDGET (AUTO-RESPOSTAS)
========================== */
.chat-widget{
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 999;
  font-family: inherit;
}

.chat-toggle{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border: none;
  border-radius: 999px;
  background: #1f1a12;
  color: #fff;
  box-shadow: 0 18px 40px rgba(0,0,0,0.35);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.chat-toggle:hover{
  transform: translateY(-2px);
  box-shadow: 0 22px 48px rgba(0,0,0,0.45);
}

.chat-toggle-label{
  font-size: 14px;
  font-weight: 600;
}

.chat-toggle-badge{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #c9972b;
  color: #1a1a1a;
  font-size: 12px;
  font-weight: 700;
}

.chat-panel{
  position: absolute;
  right: 0;
  bottom: 62px;
  width: 330px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.35);
  overflow: hidden;
  display: none;
  border: 1px solid #eadfca;
}

.chat-panel.is-open{
  display: block;
  animation: chat-pop 0.2s ease;
}

@keyframes chat-pop{
  from{ transform: translateY(8px); opacity: 0; }
  to{ transform: translateY(0); opacity: 1; }
}

.chat-header{
  background: #1f1a12;
  color: #fff;
  padding: 14px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.chat-title{
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.chat-title span{
  font-size: 12px;
  opacity: 0.8;
}

.chat-close{
  border: none;
  background: transparent;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
}

.chat-messages{
  padding: 14px 14px 6px;
  max-height: 320px;
  overflow-y: auto;
  background: #faf7f0;
}

.chat-bubble{
  padding: 10px 12px;
  border-radius: 14px;
  margin-bottom: 8px;
  font-size: 14px;
  line-height: 1.4;
  max-width: 85%;
}

.chat-bubble.bot{
  background: #efe4cd;
  color: #2b241a;
  border-bottom-left-radius: 6px;
}

.chat-bubble.user{
  background: #1f1a12;
  color: #fff;
  margin-left: auto;
  border-bottom-right-radius: 6px;
}

.chat-quick{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 8px 0 10px;
}

.chat-quick button{
  border: 1px solid #d9c7a1;
  background: #fff;
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 12px;
  cursor: pointer;
}

.chat-input{
  display: flex;
  gap: 8px;
  padding: 10px 12px 12px;
  background: #fff;
  border-top: 1px solid #eadfca;
}

.chat-input input{
  flex: 1;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #d7cdb5;
  outline: none;
  font-size: 14px;
}

.chat-input button{
  padding: 10px 14px;
  border: none;
  border-radius: 10px;
  background: #c9972b;
  color: #fff;
  font-weight: 700;
  cursor: pointer;
}

.chat-input button:hover{
  background: #333;
}

@media (max-width: 480px){
  .chat-panel{
    width: min(92vw, 360px);
  }
  .chat-widget{
    right: 14px;
    bottom: 14px;
  }
}



/* TEXTO CENTRAL DO BANNER */
.hero-text{
  position: absolute;
  inset: 0;
  z-index: 2;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  text-align: center;
  padding: 0 20px;
}

/* Ajuste somente do banner 1 (sobe o texto um pouco) */
.slide.active .hero-text{
  transform: translateY(-6%);
}

.hero-text h2{
  font-size: clamp(26px, 4vw, 54px);
  color: #fff;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 12px;
  text-shadow: 0 8px 25px rgba(0,0,0,.55);
}

.hero-text p{
  font-size: clamp(14px, 2vw, 22px);
  color: rgba(255,255,255,.9);
  max-width: 900px;
  text-shadow: 0 6px 18px rgba(0,0,0,.45);
}
