/* ============================================================
   VARIÁVEIS DE DESIGN
   Para alterar cores: modifique as variáveis abaixo.
   --green-*   : cor principal (verde floresta)
   --brown-*   : cor de apoio (marrom)
   --cream-*   : backgrounds neutros
============================================================ */
:root {
  /* Verde floresta – cor principal */
  --green-deep:   #1A3A2A;
  --green-forest: #2D5A3D;
  --green-mid:    #3D7A52;
  --green-light:  #5A9E6F;
  --green-pale:   #EAF2EC;

  /* Marrom – cor de apoio */
  --brown-dark:   #2C1A0E;
  --brown-mid:    #5C3A1E;
  --brown-warm:   #8B5A2B;
  --brown-light:  #C49A6C;
  --brown-pale:   #F5EFE6;

  /* Neutros */
  --cream:        #F7F5F0;
  --cream-dark:   #EDE8DF;
  --white:        #FDFCFA;
  --text-dark:    #131A12;
  --text-mid:     #3D4A3A;
  --text-light:   #6B7D67;

  /* WhatsApp */
  --green-wa:     #25D366;
  --green-wa-dk:  #128C7E;

  /* Tipografia */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  /* Formas */
  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-xl:  32px;

  /* Sombras */
  --shadow-sm:   0 2px 12px rgba(26,58,42,0.08);
  --shadow-card: 0 4px 24px rgba(26,58,42,0.10);
  --shadow-hover:0 12px 40px rgba(26,58,42,0.18);

  /* Transições */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --t:    0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================================
   RESET & BASE
============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { font-family: var(--font-body); }

/* ============================================================
   UTILITÁRIOS
============================================================ */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-mid);
  background: var(--green-pale);
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  color: var(--green-deep);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 17px;
  color: var(--text-light);
  max-width: 560px;
  line-height: 1.75;
}

/* Animação scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.visible        { opacity: 1; transform: translateY(0); }
.reveal-delay-1        { transition-delay: 0.10s; }
.reveal-delay-2        { transition-delay: 0.20s; }
.reveal-delay-3        { transition-delay: 0.30s; }
.reveal-delay-4        { transition-delay: 0.40s; }

/* ============================================================
   BOTÕES
============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 14px 26px;
  border-radius: var(--radius-md);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--t);
  white-space: nowrap;
}

/* Verde principal */
.btn-primary {
  background: var(--green-forest);
  color: #fff;
}
.btn-primary:hover {
  background: var(--green-deep);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(45,90,61,0.35);
}

/* WhatsApp */
.btn-whatsapp {
  background: var(--green-wa);
  color: #fff;
}
.btn-whatsapp:hover {
  background: var(--green-wa-dk);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,211,102,0.35);
}

/* Outline claro (hero) */
.btn-outline-light {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.55);
}
.btn-outline-light:hover {
  background: rgba(255,255,255,0.12);
  border-color: #fff;
}

/* Microcopy abaixo de botão */
.btn-microcopy {
  display: block;
  font-size: 12px;
  font-weight: 400;
  color: rgba(255,255,255,0.65);
  margin-top: 8px;
  text-align: center;
}

/* ============================================================
   NAVBAR
============================================================ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: background var(--t), padding var(--t), box-shadow var(--t);
}
#navbar.scrolled {
  background: rgba(253, 252, 250, 0.97);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 12px 0;
  box-shadow: 0 2px 20px rgba(26, 58, 42, 0.09);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  opacity: 0;
  visibility: hidden;
  transition: color var(--t), opacity var(--t), visibility var(--t);
}
#navbar.scrolled .nav-logo {
  opacity: 1;
  visibility: visible;
}
.nav-logo-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}
.nav-logo-icon img { width: 100%; height: 100%; object-fit: contain; }
#navbar.scrolled .nav-logo { color: var(--green-deep); }

/* Links desktop */
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  transition: color var(--t);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 2px;
  background: var(--green-light);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform var(--t);
}
.nav-links a:hover::after { transform: scaleX(1); }
#navbar.scrolled .nav-links a { color: var(--text-mid); }
.nav-links a:hover { color: var(--green-mid); }

.nav-cta {
  display: flex !important;
  align-items: center;
  gap: 7px;
  background: var(--green-forest) !important;
  color: #fff !important;
  padding: 10px 20px;
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 600;
  transition: background var(--t) !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--green-deep) !important; }

/* Botão hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
  border-radius: var(--radius-sm);
  transition: background var(--t);
}
.nav-toggle:hover { background: rgba(255,255,255,0.12); }
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: var(--t);
}
#navbar.scrolled .nav-toggle span { background: var(--green-deep); }
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Overlay mobile */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 998;
  opacity: 0;
  transition: opacity var(--t);
}
.nav-overlay.visible { opacity: 1; }

@media (max-width: 820px) {
  .nav-toggle { display: flex; }

  .nav-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: fixed;
    top: 0; right: -100%;
    width: min(320px, 85vw);
    height: 100svh;
    padding: 80px 28px 32px;
    background: var(--white);
    box-shadow: -8px 0 40px rgba(26,58,42,0.15);
    gap: 4px;
    z-index: 999;
    transition: right 0.35s var(--ease);
    overflow-y: auto;
  }
  .nav-links.open { right: 0; }
  .nav-links li { width: 100%; }
  .nav-links a {
    display: block;
    color: var(--text-mid) !important;
    font-size: 17px;
    padding: 12px 0;
    border-bottom: 1px solid var(--cream-dark);
  }
  .nav-links a::after { display: none; }
  .nav-cta {
    margin-top: 16px;
    width: 100%;
    justify-content: center;
    padding: 14px 20px !important;
    font-size: 16px !important;
  }

  .nav-overlay { display: block; }
}


/* ============================================================
   HERO
============================================================ */
#hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(155deg,
      rgba(26,58,42,0.75) 0%,
      rgba(45,90,61,0.65) 50%,
      rgba(26,26,14,0.78) 100%
    ),
    url("../assets/images/hero.avif");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23fff' fill-opacity='0.015'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
  padding-top: 80px;
}

.hero-identity {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 32px;
  width: max-content;
  max-width: 100%;
}
.hero-identity-icon {
  width: clamp(44px, 6.6vw, 80px);
  height: clamp(44px, 6.6vw, 80px);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hero-identity-icon img { width: 100%; height: 100%; object-fit: contain; }
.hero-identity-name {
  font-family: var(--font-display);
  font-size: calc(clamp(38px, 6vw, 72px) * 1.1);
  font-weight: 900;
  color: #fff;
  white-space: nowrap;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(38px, 6vw, 72px);
  font-weight: 900;
  color: #fff;
  line-height: 1.07;
  margin-bottom: 22px;
}
.hero-title em {
  font-style: normal;
  color: #A8D5B0;
}

.hero-subtitle {
  font-size: clamp(16px, 2vw, 19px);
  color: rgba(255,255,255,0.75);
  max-width: 520px;
  margin-bottom: 40px;
  line-height: 1.7;
}

.hero-cta-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  margin-bottom: 40px;
}
.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

@media (max-width: 600px) {
  .hero-content { padding-top: 100px; }
  .hero-identity { align-items: flex-start; width: 100%; }
  .hero-identity-name { white-space: normal; line-height: 1.05; }
  .hero-cta-row { flex-direction: column; width: 100%; }
  .hero-cta-row .btn { width: 100%; justify-content: center; }
}


/* ============================================================
   PRODUTOS
============================================================ */
#produtos {
  padding: 104px 0;
  background: var(--cream);
}

.products-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 56px;
  flex-wrap: wrap;
  gap: 24px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}

/* ---- Subseções dentro de uma aba (ex.: Pinus Natural / Pinus Beneficiado) ---- */
.pinus-subsection {
  margin-bottom: 28px;
}
.pinus-subsection-title {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.6vw, 28px);
  font-weight: 700;
  color: var(--green-deep);
  line-height: 1.25;
  margin-bottom: 8px;
}
.pinus-subsection-desc {
  font-size: 15px;
  color: var(--text-light);
  max-width: 620px;
  line-height: 1.7;
}
.pinus-divider {
  border: none;
  border-top: 1px solid var(--cream-dark);
  margin: 56px 0 40px;
}
@media (max-width: 600px) {
  .pinus-divider { margin: 40px 0 32px; }
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  cursor: pointer;
  transition: transform var(--t), box-shadow var(--t);
  position: relative;
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.product-img-wrap { overflow: hidden; flex-shrink: 0; }
.product-img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  transition: transform 0.55s var(--ease);
}
.product-card:hover .product-img { transform: scale(1.06); }

/* product-tag removido do HTML — classe mantida vazia para retrocompatibilidade */

.product-body {
  padding: 22px 24px 26px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--green-deep);
  margin-bottom: 12px;
}

/* Placeholder de imagem — preparado para receber foto real futuramente */
.product-img-placeholder {
  width: 100%;
  height: 190px;
  background: linear-gradient(135deg, var(--cream-dark) 0%, var(--cream) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-bottom: 1px solid var(--cream-dark);
  position: relative;
  overflow: hidden;
}
.product-img-placeholder::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 18px,
    rgba(139,90,43,0.04) 18px,
    rgba(139,90,43,0.04) 19px
  );
}
.product-img-placeholder-icon {
  font-size: 36px;
  opacity: 0.22;
  position: relative;
  z-index: 1;
}

/* Painel de medidas — fundo sutil, borda discreta, compacto */
.product-measures {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 16px;
  padding: 14px 16px;
  background: var(--cream);
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius-sm);
}
.product-measures strong {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--green-mid);
  margin-bottom: 8px;
}
.product-measures span {
  display: block;
  padding: 2px 0;
  color: var(--text-mid);
}
.product-measures .measure-consult {
  display: block;
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px solid var(--cream-dark);
  font-size: 12px;
  font-weight: 500;
  color: var(--green-forest);
}

/* CTA principal do card — botão preenchido, mais evidente que "Medidas" */
.product-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  margin-top: auto;
  padding: 13px 20px;
  border-radius: var(--radius-md);
  background: var(--green-forest);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  transition: background var(--t), transform var(--t), box-shadow var(--t);
}
.product-link:hover {
  background: var(--green-deep);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(26,58,42,0.28);
}

/* Card CTA especial */
.product-card-cta {
  background: var(--green-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
  padding: 36px;
  text-align: center;
  min-height: 340px;
}

@media (max-width: 600px) {
  .products-header { flex-direction: column; align-items: flex-start; }
}


/* ============================================================
   DIFERENCIAIS
============================================================ */
#diferenciais {
  padding: 80px 0 104px;
  background: var(--white);
  scroll-margin-top: 72px;
}

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

.diff-image-block { position: relative; }

.diff-img-main {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--radius-xl);
}

.diff-img-badge {
  position: absolute;
  bottom: 28px; right: -20px;
  background: var(--green-deep);
  color: #fff;
  padding: 20px 26px;
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 32px rgba(26,58,42,0.28);
  text-align: center;
}
.diff-img-badge-num {
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 700;
  color: #A8D5B0;
}
.diff-img-badge-label {
  font-size: 12px;
  color: rgba(255,255,255,0.65);
  margin-top: 3px;
}

@media (max-width: 860px) {
  .diff-layout { grid-template-columns: 1fr; gap: 48px; }
  .diff-img-main { height: 300px; }
  .diff-img-badge { right: 16px; }
}

/* ---- Linha do tempo ---- */
.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 112px;
}
.timeline-track {
  position: absolute;
  top: 6px;
  left: 16.6%;
  right: 16.6%;
  height: 2px;
  background: var(--cream-dark);
}
.timeline-item {
  position: relative;
  text-align: center;
}
.timeline-marker {
  position: relative;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--green-forest);
  margin: 0 auto 24px;
}
.timeline-year {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 700;
  color: var(--green-deep);
  margin-bottom: 8px;
}
.timeline-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--green-forest);
  margin-bottom: 10px;
}
.timeline-desc {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.7;
  max-width: 280px;
  margin: 0 auto;
}
@media (max-width: 760px) {
  .timeline {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-top: 72px;
  }
  .timeline-track { display: none; }
  .timeline-item {
    text-align: left;
    padding-left: 28px;
    border-left: 2px solid var(--cream-dark);
    padding-bottom: 4px;
  }
  .timeline-item:last-child { border-left-color: transparent; }
  .timeline-marker { position: absolute; left: -7px; top: 3px; margin: 0; }
  .timeline-desc { max-width: none; margin: 0; }
}

/* ---- Faixa de números ---- */
.history-stats-band {
  background: var(--green-deep);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  margin: 96px 0;
}
.history-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}
.history-stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 42px);
  font-weight: 700;
  color: #fff;
}
.history-stat-label {
  display: block;
  font-size: 13px;
  color: rgba(255,255,255,0.62);
  margin-top: 6px;
  letter-spacing: 0.02em;
}
@media (max-width: 700px) {
  .history-stats-band { padding: 36px 24px; }
  .history-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 32px 20px; }
}

/* ---- Diferenciais (cards no marrom padrão do site) ---- */
.history-values { margin-top: 0; }
.value-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.value-card {
  background: linear-gradient(160deg, var(--brown-dark) 0%, var(--brown-mid) 100%);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  transition: transform var(--t), box-shadow var(--t);
}
.value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}
.value-card-index {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--brown-light);
  letter-spacing: 0.05em;
  margin-bottom: 18px;
}
.value-card-title {
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}
.value-card-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  line-height: 1.65;
}
@media (max-width: 900px) {
  .value-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .value-grid { grid-template-columns: 1fr; }
}

/* ---- Frase de encerramento ---- */
.history-closing {
  font-family: var(--font-display);
  font-size: clamp(21px, 2.4vw, 28px);
  font-weight: 600;
  font-style: italic;
  color: var(--green-deep);
  text-align: center;
  max-width: 760px;
  line-height: 1.55;
  margin: 96px auto 0;
}
@media (max-width: 700px) {
  .history-closing { margin-top: 64px; }
}


/* ============================================================
   DEPOIMENTOS
============================================================ */
#depoimentos {
  padding: 104px 0;
  background: var(--green-deep);
  overflow: hidden;
}

#depoimentos .section-label {
  color: #A8D5B0;
  background: rgba(168,213,176,0.15);
}
#depoimentos .section-title { color: var(--white); }
#depoimentos .section-subtitle { color: rgba(255,255,255,0.52); }

.testimonials-slider {
  overflow: hidden;
  margin-top: 56px;
}

.testimonials-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.testimonials-track::-webkit-scrollbar { display: none; }

.testimonial-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: background var(--t);
  scroll-snap-align: start;
  flex: 0 0 calc((100% - 48px) / 3);
  min-width: 260px;
}
.testimonial-card:hover { background: rgba(255,255,255,0.10); }

@media (max-width: 860px) {
  .testimonial-card { flex: 0 0 calc((100% - 24px) / 2); }
}
@media (max-width: 600px) {
  .testimonial-card { flex: 0 0 88%; }
}

.stars { display: flex; gap: 3px; margin-bottom: 16px; color: #F5C542; font-size: 16px; }

.testimonial-text {
  font-size: 15px;
  color: rgba(255,255,255,0.78);
  line-height: 1.75;
  margin-bottom: 22px;
  font-style: italic;
}

.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--green-forest);
  border: 2px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  color: #fff;
  flex-shrink: 0;
}
.author-name { font-weight: 600; font-size: 14px; color: #fff; }
.author-role { font-size: 13px; color: rgba(255,255,255,0.42); margin-top: 2px; }

/* Setas de navegação do carrossel de avaliações */
.testimonials-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
}
.testimonials-arrow-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  color: #fff;
  font-size: 20px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--t);
}
.testimonials-arrow-btn:hover { background: rgba(255,255,255,0.16); }
.testimonials-arrow-btn:disabled { opacity: 0.35; cursor: default; pointer-events: none; }

/* Faixa de segmentos atendidos */
.segments-strip {
  margin-top: 72px;
  padding-top: 56px;
  border-top: 1px solid rgba(255,255,255,0.09);
}
.segments-title {
  text-align: center;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.40);
  margin-bottom: 24px;
}
.segments-pills {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}
.segment-pill {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.10);
  color: rgba(255,255,255,0.62);
  padding: 8px 18px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
}


/* ============================================================
   CONTATO
============================================================ */
#contato {
  padding: 104px 0;
  background: var(--cream);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 64px;
  align-items: start;
}

.contact-info h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 700;
  color: var(--green-deep);
  line-height: 1.2;
  margin-bottom: 14px;
}
.contact-info > p {
  font-size: 16px;
  color: var(--text-light);
  margin-bottom: 36px;
  line-height: 1.75;
}

.contact-items { display: flex; flex-direction: column; gap: 16px; margin-bottom: 36px; }

.contact-item { display: flex; gap: 16px; align-items: flex-start; }

.contact-icon {
  width: 46px; height: 46px;
  border-radius: var(--radius-md);
  background: var(--green-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.contact-item-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--green-mid);
  margin-bottom: 3px;
}
.contact-item-value {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1.5;
}
.contact-item-value a {
  color: var(--green-forest);
  font-weight: 600;
  transition: color var(--t);
}
.contact-item-value a:hover { color: var(--green-deep); }

/* Horário especial */
.hours-table { display: flex; flex-direction: column; gap: 4px; }
.hours-row { display: flex; gap: 8px; font-size: 14px; }
.hours-day { color: var(--text-mid); font-weight: 500; min-width: 140px; }
.hours-time { color: var(--text-light); }
.hours-closed { color: #B04040; font-weight: 500; }

/* Mapa */
.map-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--cream-dark);
}
.map-embed { width: 100%; height: 480px; border: none; display: block; }

/* Redes sociais (seção Contato) */
.contact-social { margin-top: 32px; }
.contact-social-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-mid);
  margin-bottom: 12px;
}
.contact-social-links { display: flex; gap: 12px; }
.contact-social-btn {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: var(--green-pale);
  color: var(--green-forest);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--t), color var(--t), transform var(--t);
}
.contact-social-btn svg { width: 20px; height: 20px; }
.contact-social-btn:hover {
  background: var(--green-forest);
  color: #fff;
  transform: translateY(-2px);
}

@media (max-width: 860px) {
  .contact-layout { grid-template-columns: 1fr; gap: 48px; }
}


/* ============================================================
   FOOTER
============================================================ */
footer {
  background: var(--green-deep);
  padding: 64px 0 0;
  color: rgba(255,255,255,0.60);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}
.footer-logo-icon {
  width: 34px; height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
}
.footer-logo-icon img { width: 100%; height: 100%; object-fit: contain; }

.footer-desc {
  font-size: 14px;
  line-height: 1.75;
  color: rgba(255,255,255,0.45);
  max-width: 280px;
  margin-bottom: 24px;
}

.footer-social { display: flex; gap: 8px; }
.social-btn {
  width: 36px; height: 36px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  transition: background var(--t);
  cursor: pointer;
}
.social-btn:hover { background: rgba(255,255,255,0.16); }

.footer-col-title {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: rgba(255,255,255,0.35);
  margin-bottom: 18px;
}

.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  transition: color var(--t);
}
.footer-links a:hover { color: #A8D5B0; }

.footer-bottom {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.28); }

@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
}


/* ============================================================
   WHATSAPP FLUTUANTE (desktop)
============================================================ */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 900;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.wa-tooltip {
  background: #fff;
  color: var(--text-dark);
  font-size: 13px;
  font-weight: 500;
  padding: 10px 16px;
  border-radius: 12px 12px 0 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.14);
  white-space: nowrap;
  opacity: 0;
  transform: translateY(6px) scale(0.95);
  transition: var(--t);
  pointer-events: none;
}
.wa-float:hover .wa-tooltip { opacity: 1; transform: translateY(0) scale(1); }

.wa-fab {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--green-wa);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  cursor: pointer;
  transition: transform var(--t), box-shadow var(--t);
  animation: fab-pulse 2.8s ease-in-out infinite;
}
.wa-fab:hover { transform: scale(1.10); box-shadow: 0 6px 28px rgba(37,211,102,0.55); animation: none; }

@keyframes fab-pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.45); }
  50%       { box-shadow: 0 4px 32px rgba(37,211,102,0.70), 0 0 0 8px rgba(37,211,102,0.12); }
}

/* Esconder FAB no mobile (usa barra fixa) */
@media (max-width: 600px) { .wa-float { display: none; } }


/* ============================================================
   BARRA FIXA INFERIOR MOBILE
============================================================ */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 900;
  background: var(--white);
  border-top: 1px solid var(--cream-dark);
  padding: 12px 20px;
  padding-bottom: max(12px, env(safe-area-inset-bottom));
  box-shadow: 0 -4px 24px rgba(26,58,42,0.12);
}

.mobile-cta-bar a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  background: var(--green-wa);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  padding: 15px 20px;
  border-radius: var(--radius-md);
  transition: background var(--t);
  min-height: 52px;
}
.mobile-cta-bar a:hover { background: var(--green-wa-dk); }

@media (max-width: 600px) {
  .mobile-cta-bar { display: block; }
  /* Adicionar padding no footer para não cobrir conteúdo */
  footer { padding-bottom: 80px; }
}


/* ---- Toggle de medidas nos cards de produto ---- */
.measures-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green-pale);
  color: var(--green-forest);
  border: 1px solid rgba(45,90,61,0.14);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 14px;
  cursor: pointer;
  transition: background var(--t), border-color var(--t), color var(--t);
  margin-bottom: 14px;
  letter-spacing: 0.01em;
}
.measures-toggle[aria-expanded="true"] {
  background: #fff;
  border-color: var(--green-mid);
}
/* Chevron SVG via background-image — robusto, arredondado, limpo */
.measures-toggle::before {
  content: '';
  display: inline-block;
  width: 14px;
  height: 14px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232D5A3D' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='9 18 15 12 9 6'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: transform var(--t);
  flex-shrink: 0;
}
.measures-toggle[aria-expanded="true"]::before {
  transform: rotate(90deg);
}
.measures-toggle:hover {
  color: var(--green-deep);
  background: #fff;
  border-color: var(--green-mid);
}
.measures-toggle:hover::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231A3A2A' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='9 18 15 12 9 6'/%3E%3C/svg%3E");
}
.measures-panel[hidden] { display: none; }


/* ============================================================
   TABS DE PRODUTOS (Pinus / Autoclavada / Kit Casa)
============================================================ */
.products-tabs-group {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 40px;
}
.products-tabs-label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 10px;
}
.products-tabs {
  display: flex;
  gap: 6px;
  background: var(--cream-dark);
  border-radius: var(--radius-md);
  padding: 5px;
  width: fit-content;
}
.tab-btn {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: var(--text-light);
  background: transparent;
  border: none;
  border-radius: calc(var(--radius-md) - 3px);
  padding: 12px 28px;
  cursor: pointer;
  transition: background var(--t), color var(--t), box-shadow var(--t);
  white-space: nowrap;
}
.tab-btn:hover { color: var(--green-forest); }
.tab-btn[aria-selected="true"] {
  background: var(--white);
  color: var(--green-deep);
  box-shadow: 0 2px 10px rgba(26,58,42,0.10);
}

/* Painel de aba */
.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* ---- ABA AUTOCLAVADA ---- */
.autoclave-banner {
  background: linear-gradient(135deg, var(--green-deep) 0%, var(--green-forest) 100%);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  margin-bottom: 40px;
  position: relative;
  overflow: hidden;
}
.autoclave-banner::before {
  content: '';
  position: absolute;
  top: -30px; right: -30px;
  width: 160px; height: 160px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
}
.autoclave-banner-body h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1.25;
}
.autoclave-banner-body p {
  font-size: 14px;
  color: rgba(255,255,255,0.72);
  line-height: 1.7;
  max-width: 580px;
}
.autoclave-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}
.autoclave-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.90);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 5px 12px;
  border-radius: 20px;
}

/* Produto autoclavado — card com indicador premium */
.product-card.autoclave .product-img-placeholder {
  background: linear-gradient(135deg, var(--green-pale) 0%, var(--cream) 100%);
}
.product-card.autoclave .product-name {
  display: flex;
  align-items: center;
  gap: 8px;
}
.autoclave-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green-mid);
  flex-shrink: 0;
}

/* Card CTA da aba Autoclavada: texto do botão é mais longo que o do
   Pinus ("Consultar disponibilidade") e estourava a largura do card
   (padding 36px) por causa do white-space:nowrap padrão de .btn. */
#autoclavadaGrid .product-card-cta .btn-whatsapp {
  white-space: normal;
  text-align: center;
  max-width: 200px;
}

/* ---- KIT CASA ---- */
.kit-casa-hero {
  background: linear-gradient(160deg, var(--brown-dark) 0%, var(--brown-mid) 100%);
  border-radius: var(--radius-xl);
  padding: 52px 48px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: start;
  position: relative;
  overflow: hidden;
  margin-bottom: 24px;
}
.kit-casa-hero::after {
  content: '';
  position: absolute;
  bottom: -60px; right: -60px;
  width: 260px; height: 260px;
  border-radius: 50%;
  background: rgba(255,255,255,0.03);
}
.kit-title {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 14px;
}
.kit-title em {
  font-style: normal;
  color: var(--brown-light);
}
.kit-desc {
  font-size: 16px;
  color: rgba(255,255,255,0.68);
  line-height: 1.7;
  max-width: 500px;
  margin-bottom: 28px;
}
.kit-cta-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}
/* Lado direito do kit — estatísticas */
.kit-stats {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 160px;
  position: relative;
  z-index: 1;
}
.kit-stat-box {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  text-align: center;
}
.kit-stat-num {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--brown-light);
}
.kit-stat-label {
  font-size: 12px;
  color: rgba(255,255,255,0.50);
  margin-top: 3px;
}

/* Responsivo abas */
@media (max-width: 600px) {
  .products-tabs-group { width: 100%; }
  .products-tabs { width: 100%; }
  .tab-btn { flex: 1; padding: 12px 12px; font-size: 14px; text-align: center; }
  .autoclave-banner { padding: 22px 20px; }
  .kit-casa-hero { grid-template-columns: 1fr; padding: 32px 24px; }
  .kit-stats { flex-direction: row; flex-wrap: wrap; }
  .kit-stat-box { flex: 1; min-width: 120px; }
}

