@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,600;0,9..144,700;1,9..144,400&family=Poppins:wght@300;400;500;600&display=swap');

/* ─── Variables ─────────────────────────────────────── */
:root {
  /* Brand palette */
  --marrom:        #6C3018;
  --marrom-escuro: #2A1208;
  --creme:         #FAEAD3;
  --ambar:         #FDAA20;
  --ambar-escuro:  #f09010;
  --vermelho:      #8A1D18;

  /* Base */
  --branco:    #FFFFFF;
  --cinza:     #F5F5F5;
  --borda:     #EBEBEB;
  --texto:     #1C1C1C;
  --subtexto:  #6B6B6B;

  /* Typography */
  --font-display: 'Fraunces', serif;
  --font-body:    'Poppins', sans-serif;

  /* Border radius */
  --r-sm:   8px;
  --r-md:  16px;
  --r-lg:  20px;
  --r-xl:  24px;
  --r-max: 999px;

  /* Shadows */
  --shadow-sm:    0 2px 8px rgba(0,0,0,.06);
  --shadow-md:    0 4px 16px rgba(0,0,0,.08);
  --shadow-lg:    0 8px 24px rgba(0,0,0,.12);
  --shadow-hover: 0 8px 24px rgba(0,0,0,.14);
}

/* ─── Reset ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
img, picture, video, canvas, svg { display: block; max-width: 100%; }
input, button, textarea, select { font: inherit; }
p, h1, h2, h3, h4, h5, h6 { overflow-wrap: break-word; }
ol, ul { list-style: none; }
a { color: inherit; text-decoration: none; }

/* ─── Base ──────────────────────────────────────────── */
body {
  background: var(--branco);
  color: var(--texto);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4, h5, h6 { font-family: var(--font-display); line-height: 1.15; color: var(--texto); }

/* ─── Layout ─────────────────────────────────────────── */
.container { width: min(1160px, 90%); margin-inline: auto; }
.section { padding-block: 80px; background: var(--branco); }
.section--gray { background: var(--cinza); }
.section--dark { background: linear-gradient(135deg, var(--marrom-escuro), var(--marrom)); color: white; }
.section--dark h1, .section--dark h2, .section--dark h3 { color: white; }
.section--amber { background: linear-gradient(90deg, var(--ambar), var(--ambar-escuro)); }

/* Section header */
.section-eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .7rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  color: var(--ambar); margin-bottom: 1rem;
}
.section-eyebrow::before { content: ''; width: 16px; height: 2px; background: var(--ambar); border-radius: 2px; }

.section__title {
  font-size: clamp(2rem, 4vw, 3rem); font-weight: 700;
  color: var(--texto); margin-bottom: 1rem; line-height: 1.1;
  overflow-wrap: normal; word-break: normal;
}
.section--dark .section__title { color: white; }
.section__sub {
  font-size: 1rem; color: var(--subtexto);
  font-weight: 400; max-width: 52ch; line-height: 1.75;
}

/* ─── Letter reveal ──────────────────────────────────── */
.reveal-text .word {
  display: inline-block;
  white-space: nowrap;
}
.reveal-text .letter {
  display: inline-block;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .4s ease, transform .4s ease;
}
.reveal-text.revealed .letter { opacity: 1; transform: translateY(0); }

/* ─── Buttons ───────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: .85rem 2rem; border-radius: var(--r-md);
  font-family: var(--font-body); font-weight: 600;
  font-size: .85rem; letter-spacing: .05em; text-transform: uppercase;
  cursor: pointer; border: none; gap: .5rem;
  transition: filter .2s ease, transform .15s ease, box-shadow .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-ambar {
  background: linear-gradient(90deg, var(--ambar), var(--ambar-escuro));
  color: var(--marrom-escuro);
  box-shadow: 0 4px 16px rgba(253,170,32,.35);
}
.btn-ambar:hover { box-shadow: 0 6px 24px rgba(253,170,32,.5); }
.btn-marrom { background: var(--marrom); color: white; }
.btn-marrom:hover { filter: brightness(1.1); }
.btn-ghost { background: rgba(255,255,255,.1); color: white; border: 1.5px solid rgba(255,255,255,.3); backdrop-filter: blur(8px); }
.btn-ghost:hover { background: rgba(255,255,255,.18); border-color: rgba(255,255,255,.5); }
.btn-outline { background: transparent; color: var(--texto); border: 1.5px solid var(--borda); }
.btn-outline:hover { border-color: var(--marrom); color: var(--marrom); }
.btn-lg { padding: 1rem 2.5rem; font-size: .9rem; }

/* ─── Animated CTA Buttons ─────────────────────────────── */
@keyframes dudim-border-spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* Primary: spinning amber-to-marrom glow border, amber fill */
.btn-ambar.btn-lg {
  position: relative;
  z-index: 0;
  overflow: hidden;
  background: transparent;
  color: var(--marrom-escuro);
  box-shadow: none;
}
.btn-ambar.btn-lg:hover {
  transform: scale(1.05);
  box-shadow: none;
  filter: none;
}
.btn-ambar.btn-lg:active { transform: scale(1); }
.btn-ambar.btn-lg::before {
  content: '';
  position: absolute;
  z-index: -2;
  left: -50%; top: -50%;
  width: 200%; height: 200%;
  background: conic-gradient(
    from 0deg,
    var(--ambar)         0deg,
    var(--ambar-escuro)  45deg,
    var(--marrom)        90deg,
    var(--marrom-escuro) 135deg,
    transparent          175deg,
    transparent          315deg,
    var(--ambar)         360deg
  );
  filter: blur(5px);
  animation: dudim-border-spin 4s linear infinite;
}
.btn-ambar.btn-lg::after {
  content: '';
  position: absolute;
  top: 2px; left: 2px; right: 2px; bottom: 2px;
  z-index: -1;
  border-radius: calc(var(--r-md) - 2px);
  background: linear-gradient(90deg, var(--ambar), var(--ambar-escuro));
}

/* Ghost: subtle amber-glow spinning border, glassy dark fill */
.btn-ghost.btn-lg {
  position: relative;
  z-index: 0;
  overflow: hidden;
  border: none;
  background: transparent;
  color: white;
}
.btn-ghost.btn-lg:hover {
  transform: scale(1.05);
  background: transparent;
  border-color: transparent;
  filter: none;
}
.btn-ghost.btn-lg:active { transform: scale(1); }
.btn-ghost.btn-lg::before {
  content: '';
  position: absolute;
  z-index: -2;
  left: -50%; top: -50%;
  width: 200%; height: 200%;
  background: conic-gradient(
    from 0deg,
    rgba(253,170,32,.85)  0deg,
    rgba(253,170,32,.25)  60deg,
    transparent           120deg,
    transparent           240deg,
    rgba(253,170,32,.25)  300deg,
    rgba(253,170,32,.85)  360deg
  );
  animation: dudim-border-spin 4s linear infinite;
}
.btn-ghost.btn-lg::after {
  content: '';
  position: absolute;
  top: 1.5px; left: 1.5px; right: 1.5px; bottom: 1.5px;
  z-index: -1;
  border-radius: calc(var(--r-md) - 1.5px);
  background: rgba(42,18,8,.62);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

/* ─── Nav ───────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 1.1rem 0;
  --nav-text: rgba(255,255,255,.88);
  --nav-bg: transparent;
  background: var(--nav-bg);
  transition: background .3s ease, box-shadow .3s ease, padding .3s ease;
}
.nav.nav--light {
  --nav-text: var(--texto);
  --nav-bg: rgba(255,255,255,.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--borda);
  padding: .85rem 0;
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; }
.nav__logo {
  display: flex;
  align-items: center;
  transition: opacity .2s;
}
.nav__logo:hover { opacity: .85; }
.nav__logo-img {
  height: 48px;
  width: auto;
  display: block;
  border-radius: 6px;
}
.nav__links { display: flex; align-items: center; gap: 2rem; }
.nav__links a {
  color: var(--nav-text); font-size: .8rem; font-weight: 500;
  letter-spacing: .06em; text-transform: uppercase; opacity: .8;
  transition: opacity .2s, color .3s;
}
.nav--light .nav__links a { color: var(--texto); }
.nav__links a:hover { opacity: 1; }
.nav__links a.active { opacity: 1; }
.nav--light .nav__links a.active { color: var(--marrom); }
.nav__cta { padding: .55rem 1.2rem !important; font-size: .78rem !important; border-radius: var(--r-sm) !important; box-shadow: none !important; }
.nav__cta:hover { box-shadow: none !important; }

.nav__hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px; z-index: 101;
}
.nav__hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--nav-text); transition: transform .3s, opacity .3s, background .3s;
}
.nav--light .nav__hamburger span { background: var(--texto); }
.nav__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav__mobile {
  display: none; position: fixed; inset: 0;
  background: white; z-index: 99;
  flex-direction: column; align-items: center; justify-content: center; gap: 2rem;
  opacity: 0; pointer-events: none; transition: opacity .3s ease;
}
.nav__mobile.open { display: flex; opacity: 1; pointer-events: all; }
.nav__mobile a { font-family: var(--font-display); font-size: 1.6rem; color: var(--marrom); font-style: normal; font-weight: 700; transition: opacity .2s; }
.nav__mobile a:hover { opacity: .7; }

/* ─── Marquee ────────────────────────────────────────── */
.marquee { background: var(--ambar); padding: 1.1rem 0; overflow: hidden; }
.marquee__track {
  display: flex; align-items: center; white-space: nowrap; width: max-content;
  animation: marqueeScroll 40s linear infinite;
}
.marquee__item {
  font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--marrom-escuro); padding: 0 2rem;
  display: flex; align-items: center; gap: .75rem;
}
.marquee__item::after { content: '◆'; color: var(--marrom-escuro); font-size: .5rem; opacity: .5; }
@keyframes marqueeScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ─── Hero ──────────────────────────────────────────── */
.hero {
  background-image: url('assets/images/banner-hero.webp');
  background-size: cover;
  background-position: center right;
  position: relative;
  padding: 120px 60px;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(42, 18, 8, 0.4);
  z-index: 1;
}
.hero--dark::before { background: rgba(42, 18, 8, 0.6); }
.hero__bg-noise {
  position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(circle at 70% 30%, rgba(253,170,32,.12) 0%, transparent 55%),
                    radial-gradient(circle at 20% 80%, rgba(255,255,255,.04) 0%, transparent 40%);
}
.hero__grid { display: grid; grid-template-columns: 1fr; align-items: center; width: 100%; }
.hero-content { position: relative; z-index: 2; max-width: 600px; }
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .7rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  color: var(--ambar); margin-bottom: 1.5rem;
  padding: .4rem 1rem; border: 1px solid rgba(253,170,32,.3); border-radius: var(--r-max);
}
.hero__eyebrow::before { content: ''; width: 6px; height: 6px; background: var(--ambar); border-radius: 50%; }
.hero__title {
  font-family: var(--font-display); font-size: clamp(3rem, 6vw, 5rem); font-weight: 700;
  color: white; line-height: 1.02; letter-spacing: -.03em; margin-bottom: 1.5rem;
}
.hero__title em { color: var(--ambar); font-style: italic; }
.hero__sub { font-size: 1.05rem; color: rgba(255,255,255,.65); max-width: 44ch; margin-bottom: 2.5rem; line-height: 1.75; }
.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Glass stats (right side) */
.hero__visual { display: none; }
.hero__circle {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 300px; height: 300px; border-radius: 50%;
  border: 1px solid rgba(253,170,32,.15);
}
.hero__circle::after {
  content: ''; position: absolute; inset: -24px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.05);
}
.glass-card {
  position: absolute;
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--r-lg); padding: 20px 24px;
}
.glass-card__val {
  font-family: var(--font-display); font-size: 2.2rem; font-weight: 700; font-style: italic;
  color: var(--ambar); line-height: 1; margin-bottom: .3rem;
}
.glass-card__label { font-size: .72rem; font-weight: 500; color: rgba(255,255,255,.55); letter-spacing: .06em; text-transform: uppercase; }
.glass-card--a { top: 10%; left: 0; }
.glass-card--b { top: 40%; right: 0; }
.glass-card--c { bottom: 8%; left: 20%; }

.hero__scroll { position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: .5rem; color: rgba(255,255,255,.25); font-size: .65rem; letter-spacing: .14em; text-transform: uppercase; }
.hero__scroll-line { width: 1px; height: 40px; background: linear-gradient(to bottom, rgba(255,255,255,.3), transparent); animation: scrollPulse 2.4s ease-in-out infinite; }
@keyframes scrollPulse { 0%,100% { opacity:.3; transform:scaleY(1); } 50% { opacity:.08; transform:scaleY(.4); } }

/* Hero short (inner pages) */
.hero-short {
  min-height: 58vh;
  background: linear-gradient(135deg, var(--marrom-escuro) 0%, var(--marrom) 100%);
  display: flex; align-items: flex-end; padding-top: 80px; padding-bottom: 64px;
  position: relative; overflow: hidden;
}
.hero-short__bg {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 55% 70% at 90% 40%, rgba(253,170,32,.1) 0%, transparent 60%);
}
.hero-short__content { position: relative; z-index: 2; }
.hero-short__eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .7rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  color: var(--ambar); margin-bottom: 1.25rem;
  padding: .35rem .9rem; border: 1px solid rgba(253,170,32,.3); border-radius: var(--r-max);
}
.hero-short__eyebrow::before { content: ''; width: 5px; height: 5px; background: var(--ambar); border-radius: 50%; }
.hero-short__title { font-family: var(--font-display); font-size: clamp(2.6rem, 5vw, 4rem); font-weight: 700; color: white; line-height: 1.05; letter-spacing: -.025em; margin-bottom: 1rem; }
.hero-short__title em { color: var(--ambar); font-style: italic; }
.hero-short__sub { font-size: 1rem; color: rgba(255,255,255,.6); max-width: 42ch; line-height: 1.75; margin-bottom: 2rem; }
.hero-short__stats { display: flex; gap: 3rem; margin-top: 2.5rem; padding-top: 2.5rem; border-top: 1px solid rgba(255,255,255,.1); }
.hero-short__stat-val { font-family: var(--font-display); font-size: 2.2rem; font-weight: 700; font-style: italic; color: var(--ambar); line-height: 1; }
.hero-short__stat-label { font-size: .7rem; color: rgba(255,255,255,.4); text-transform: uppercase; letter-spacing: .06em; margin-top: .3rem; }

/* ─── Footer ────────────────────────────────────────── */
.footer {
  background: var(--marrom-escuro); color: white;
  padding: 4.5rem 0 2rem;
}
.footer__top {
  display: grid; grid-template-columns: 1.7fr 1fr 1fr 1fr; gap: 3rem;
  padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,.07); margin-bottom: 2rem;
}
.footer__logo { display: block; font-family: var(--font-display); font-size: 2rem; font-weight: 700; font-style: italic; color: white; margin-bottom: .75rem; }
.footer__logo-img { display: block; height: 56px; width: auto; margin-bottom: .75rem; }
.footer__tagline { font-size: .875rem; color: rgba(255,255,255,.7); line-height: 1.7; }
.footer__col h4 { font-family: var(--font-body); font-size: .65rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--ambar); margin-bottom: 1.25rem; }
.footer__col ul { display: flex; flex-direction: column; gap: .75rem; }
.footer__col a { font-size: .875rem; color: rgba(255,255,255,.8); transition: color .2s; }
.footer__col a:hover { color: white; }
.footer__bottom { display: flex; align-items: center; justify-content: space-between; font-size: .7rem; color: rgba(255,255,255,.6); }

/* ─── WhatsApp Float ─────────────────────────────────── */
.whatsapp-float {
  position: fixed; bottom: 2rem; right: 2rem;
  width: 56px; height: 56px; background: #25D366;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.4); z-index: 98;
  transition: transform .2s, box-shadow .2s;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,.55); }
.whatsapp-float svg { width: 30px; height: 30px; }

/* ─── Antes/Depois ───────────────────────────────────── */
.antes-depois { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 3.5rem; }
.ad-col { border-radius: var(--r-xl); padding: 36px 32px; }
.ad-col--before { background: var(--cinza); border: 1px solid var(--borda); }
.ad-col--after  { background: linear-gradient(140deg, var(--marrom-escuro), var(--marrom)); color: white; }
.ad-col__title {
  font-family: var(--font-display); font-size: 1.1rem; font-weight: 600;
  margin-bottom: 1.5rem; padding-bottom: .75rem; border-bottom: 1px solid rgba(0,0,0,.08);
  color: var(--texto);
}
.ad-col--after .ad-col__title { color: var(--ambar); border-color: rgba(255,255,255,.1); }
.ad-item { display: flex; align-items: flex-start; gap: .9rem; padding: .85rem 0; border-bottom: 1px solid rgba(0,0,0,.05); font-size: .875rem; line-height: 1.6; color: var(--subtexto); }
.ad-col--after .ad-item { border-color: rgba(255,255,255,.07); color: rgba(255,255,255,.7); }
.ad-item:last-child { border-bottom: none; }
.ad-icon { font-size: .9rem; flex-shrink: 0; margin-top: 2px; }
.ad-col--after .ad-icon { color: var(--ambar); }

/* ─── Pilares ────────────────────────────────────────── */
.pilares__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; margin-top: 3.5rem; }
.pilar-card {
  background: var(--branco); border-radius: var(--r-lg); padding: 32px 28px;
  box-shadow: var(--shadow-sm); border: 1px solid var(--borda);
  transition: transform .3s ease, box-shadow .3s ease;
}
.pilar-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.pilar-card__num {
  font-family: var(--font-display); font-size: 3rem; font-weight: 700; font-style: italic;
  color: var(--ambar); line-height: 1; margin-bottom: 1.25rem;
  display: inline-block;
  transition: transform .6s cubic-bezier(.34,1.56,.64,1);
}
.pilar-card__num.grow-ready { transform: scale(.5); opacity: 0; }
.pilar-card__num.grow-done  { transform: scale(1);  opacity: 1; transition: transform .6s cubic-bezier(.34,1.56,.64,1), opacity .4s ease; }
.pilar-card h3 { font-size: 1rem; color: var(--texto); margin-bottom: .5rem; }
.pilar-card p  { font-size: .825rem; color: var(--subtexto); line-height: 1.7; }

/* ─── Gallery ────────────────────────────────────────── */
/* ─── Product Grid ──────────────────────────────────── */
.produto-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 3.5rem;
}
.produto-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: transparent;
}
.produto-card__img {
  width: 100%;
  max-height: 300px;
  object-fit: contain;
  display: block;
}
.produto-card__nome {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--marrom);
  text-align: center;
  margin-top: 20px;
  letter-spacing: -.01em;
}

/* ─── Gallery Carousel ───────────────────────────── */
.gallery-carousel { position: relative; margin-top: 3.5rem; }
.carousel-viewport { overflow: hidden; border-radius: var(--r-xl); }
.carousel-track {
  display: flex; gap: 16px;
  transition: transform .5s ease-out;
  will-change: transform;
}
.carousel-item {
  flex: 0 0 calc(33.333% - 11px);
  height: 300px; border-radius: var(--r-lg); overflow: hidden; flex-shrink: 0;
}
.carousel-item img { width: 100%; height: 100%; object-fit: cover; display: block; }
.carousel-btn {
  position: absolute; top: 150px; transform: translateY(-50%);
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(253,170,32,.8); color: #fff; border: none;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; z-index: 10;
  transition: background .2s, transform .2s, opacity .2s;
}
.carousel-btn:hover:not(:disabled) { background: rgba(253,170,32,1); transform: translateY(-50%) scale(1.1); }
.carousel-btn:disabled { opacity: .4; cursor: not-allowed; }
.carousel-btn--prev { left: 8px; }
.carousel-btn--next { right: 8px; }
.carousel-dots {
  display: flex; justify-content: center; gap: 8px;
  margin-top: 1.25rem;
}
.carousel-dot {
  width: 10px; height: 10px; border-radius: 50%; border: none; cursor: pointer;
  background: #E8E8E8; padding: 0;
  transition: background .3s;
}
.carousel-dot.active { background: var(--ambar); }
@media (max-width: 1024px) {
  .carousel-item { flex: 0 0 calc(50% - 6px); }
  .carousel-track { gap: 12px; }
}
@media (max-width: 768px) {
  .carousel-item { flex: 0 0 80%; height: 260px; }
  .carousel-track { gap: 12px; }
  .carousel-btn { width: 40px; height: 40px; top: 130px; }
  .carousel-dot { width: 8px; height: 8px; }
}

/* ─── Banner ─────────────────────────────────────────── */
.banner-section { padding: 60px; background: #fff; }
.banner-container { max-width: 1200px; margin: 0 auto; }
.banner-container img {
  width: 100%; border-radius: 20px; display: block;
  box-shadow: 0 8px 24px rgba(0,0,0,.12);
  object-fit: cover; aspect-ratio: 16 / 9;
}
@media (max-width: 768px) {
  .banner-section { padding: 40px 28px; }
  .banner-container img { border-radius: 16px; }
}

/* ─── FAQ ────────────────────────────────────────────── */
.accordion { margin-top: 3rem; }
.accordion__item { border-bottom: 1px solid var(--borda); }
.accordion__trigger {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.5rem 0; background: none; border: none; cursor: pointer; text-align: left;
  font-family: var(--font-display); font-size: 1.05rem; font-weight: 600; color: var(--texto);
  transition: color .2s;
}
.accordion__trigger:hover { color: var(--marrom); }
.accordion__icon {
  flex-shrink: 0; width: 28px; height: 28px;
  background: var(--cinza); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: transform .3s ease, background .2s;
}
.accordion__icon::after { content: '+'; font-size: 1.1rem; color: var(--marrom); font-family: var(--font-body); font-weight: 300; line-height: 1; }
.accordion__item.open .accordion__icon { transform: rotate(45deg); background: var(--ambar); }
.accordion__item.open .accordion__icon::after { color: var(--marrom-escuro); }
.accordion__panel { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.accordion__panel-inner { padding-bottom: 1.5rem; font-size: .9rem; color: var(--subtexto); line-height: 1.8; max-width: 65ch; }

/* ─── Sabores ────────────────────────────────────────── */
.sabores__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3.5rem; }
.sabor-card {
  background: var(--branco); border-radius: var(--r-xl); padding: 36px 28px 32px;
  text-align: center; box-shadow: var(--shadow-sm); border: 1px solid var(--borda);
  transition: transform .3s ease, box-shadow .3s ease;
}
.sabor-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.sabor-card__circle {
  width: 100px; height: 100px; border-radius: 50%; margin: 0 auto 1.75rem; position: relative; overflow: hidden;
}
.sabor-card__circle--tradicional { background: radial-gradient(circle at 35% 30%, #e8a040, #c06010 50%, #7a3808); }
.sabor-card__circle--cafe        { background: radial-gradient(circle at 35% 30%, #9a6840, #5a3018 50%, #2a1008); }
.sabor-card__circle--doce-leite  { background: radial-gradient(circle at 35% 30%, #f4cc70, #d49018 50%, #9a6510); }
.sabor-card__circle::after { content: ''; position: absolute; top:14%; left:18%; width:36%; height:24%; background: rgba(255,255,255,.22); border-radius: 50%; filter: blur(5px); }
.sabor-card__badge {
  display: inline-block; font-size: .62rem; font-weight: 600; letter-spacing: .09em; text-transform: uppercase;
  color: var(--marrom); border: 1px solid rgba(108,48,24,.15); border-radius: var(--r-max);
  padding: .22rem .75rem; margin-bottom: .65rem; background: rgba(253,170,32,.08);
}
.sabor-card h3 { font-size: 1.3rem; color: var(--texto); margin-bottom: .6rem; }
.sabor-card p  { font-size: .85rem; color: var(--subtexto); line-height: 1.7; }

/* ─── Flavor Cards com abas ─────────────────────────── */
.flavor-card {
  background: var(--branco); border: 1px solid var(--borda);
  border-radius: var(--r-xl); padding: 24px;
}
.card-header { margin-bottom: 16px; }
.card-header h3 {
  font-family: var(--font-display); font-size: 1.4rem; font-weight: 600;
  color: var(--marrom); margin-bottom: 4px;
}
.flavor-tag {
  font-size: .68rem; font-weight: 600; letter-spacing: .09em; text-transform: uppercase;
  color: var(--ambar);
}
.card-tabs {
  display: flex; gap: 0;
  border-bottom: 2px solid var(--borda); margin-bottom: 20px;
}
.tab-btn {
  padding: 10px 16px; background: none; border: none; border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  font-family: var(--font-body); font-size: .85rem; font-weight: 500;
  color: var(--subtexto); cursor: pointer;
  transition: color .2s, border-color .2s;
}
.tab-btn:hover { color: var(--marrom); }
.tab-btn.active { color: var(--marrom); border-bottom-color: var(--ambar); }
.tab-content { display: none; }
.tab-content.active { display: block; animation: tabFadeIn .3s ease-out; }
@keyframes tabFadeIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }
.tab-content img {
  width: 100%; border-radius: var(--r-md); margin-bottom: 14px;
  object-fit: contain; aspect-ratio: 3 / 4; max-height: 400px; display: block;
}
.tab-content p { font-size: .875rem; line-height: 1.75; color: var(--subtexto); }

/* ─── Diferenciais ───────────────────────────────────── */
.diferenciais__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; margin-top: 3.5rem; }
.diferencial-item {
  display: flex; gap: 1.25rem; align-items: flex-start;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-lg); padding: 28px 24px;
}
.diferencial-item__icon {
  flex-shrink: 0; width: 44px; height: 44px;
  background: rgba(253,170,32,.12); border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
}
.diferencial-item__text h3 { font-size: 1rem; color: white; margin-bottom: .35rem; }
.diferencial-item__text p  { font-size: .83rem; color: rgba(255,255,255,.5); line-height: 1.7; }

/* ─── Steps ─────────────────────────────────────────── */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3.5rem; position: relative; }
.steps__connector {
  position: absolute; top: 2.8rem; left: calc(33.33% - 8px); right: calc(33.33% - 8px);
  height: 1px; background: linear-gradient(to right, var(--ambar), rgba(253,170,32,.2), var(--ambar)); pointer-events: none;
}
.step-card {
  background: var(--branco); border-radius: var(--r-lg); padding: 32px;
  border: 1px solid #E8E8E8;
  transition: transform .3s ease, box-shadow .3s ease;
}
.step-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.step-card__num {
  font-family: var(--font-display); font-size: 3rem; font-weight: 700; font-style: italic;
  color: var(--ambar); line-height: 1; margin-bottom: 1.25rem;
  display: inline-block;
  transition: transform .6s cubic-bezier(.34,1.56,.64,1), opacity .4s ease;
}
.step-card__num.grow-ready { transform: scale(.5); opacity: 0; }
.step-card__num.grow-done  { transform: scale(1);  opacity: 1; }
.step-card h3 { font-size: 1.1rem; color: var(--texto); margin-bottom: .5rem; }
.step-card p  { font-size: .85rem; color: var(--subtexto); line-height: 1.7; }

/* ─── Para quem é ────────────────────────────────────── */
.para-quem__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; margin-top: 3rem; }
.para-quem__item {
  display: flex; align-items: center; gap: 1rem; padding: 1.1rem 1.5rem;
  background: var(--branco); border-radius: var(--r-md); border: 1px solid var(--borda);
  font-size: .875rem; color: var(--texto); font-weight: 500;
  box-shadow: var(--shadow-sm); transition: box-shadow .2s, transform .2s;
}
.para-quem__item:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.para-quem__item svg { flex-shrink: 0; }

/* ─── Margem ─────────────────────────────────────────── */
.margem {
  background: linear-gradient(90deg, var(--ambar), var(--ambar-escuro));
  border-radius: var(--r-xl); padding: 4rem; text-align: center; margin-top: 3.5rem;
}
.margem__label { font-size: .72rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--marrom); opacity: .65; margin-bottom: .75rem; }
.margem__value { font-family: var(--font-display); font-size: clamp(4rem, 9vw, 7rem); font-weight: 700; font-style: italic; color: var(--marrom-escuro); line-height: 1; margin-bottom: .5rem; }
.margem__sub { font-size: .9rem; color: var(--marrom); opacity: .75; }

/* ─── CTA section ────────────────────────────────────── */
.cta-section { padding-block: 80px; text-align: center; }
.cta-section.cta-dark { background: linear-gradient(135deg, var(--marrom-escuro), var(--marrom)); }
.cta-section.cta-dark h2 { color: white; }
.cta-section.cta-dark p { color: rgba(255,255,255,.55); }
.cta-section h2 { font-size: clamp(2rem, 4.5vw, 3.2rem); margin-bottom: 1rem; line-height: 1.1; }
.cta-section h2 em { font-style: italic; color: var(--ambar); }
.cta-section p { font-size: .95rem; margin-bottom: 2.5rem; max-width: 44ch; margin-inline: auto; line-height: 1.75; }

/* ─── Descrição produto ──────────────────────────────── */
.descricao__layout { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; margin-top: 3.5rem; }
.descricao__list { display: flex; flex-direction: column; gap: 1.25rem; margin-top: 1.5rem; }
.descricao__item {
  display: flex; align-items: flex-start; gap: 1rem;
  font-size: .9rem; line-height: 1.7; color: var(--subtexto);
  padding: 1.1rem 1.25rem; background: var(--cinza); border-radius: var(--r-md);
}
.descricao__item::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--ambar); flex-shrink: 0; margin-top: 8px; }
.descricao__visual {
  border-radius: var(--r-xl); overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.descricao__photo {
  width: 100%; height: 100%; object-fit: cover;
  border-radius: var(--r-xl);
  display: block;
}

/* ─── Animations ─────────────────────────────────────── */
.fade-up { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.fade-up.is-visible { opacity: 1; transform: translateY(0); }
.fade-left  { opacity: 0; transform: translateX(-24px); transition: opacity .6s ease, transform .6s ease; }
.fade-left.is-visible { opacity: 1; transform: translateX(0); }
.fade-right { opacity: 0; transform: translateX(24px); transition: opacity .6s ease, transform .6s ease; }
.fade-right.is-visible { opacity: 1; transform: translateX(0); }
.d1 { transition-delay: .1s; } .d2 { transition-delay: .2s; } .d3 { transition-delay: .3s; }
.d4 { transition-delay: .4s; } .d5 { transition-delay: .5s; }

/* ─── Responsive ─────────────────────────────────────── */
@media (max-width: 768px) {
  .hero {
    background: linear-gradient(135deg, #2A1208 0%, #6C3018 100%) !important;
    padding: 80px 28px 64px;
    min-height: auto;
    align-items: flex-end;
  }
  .hero::before { display: none; }
  .hero-content { max-width: 100%; }
  .hero__sub { max-width: 100%; }
  .nav__mobile .btn-lg { padding: .85rem 2rem; font-size: .9rem; white-space: nowrap; width: auto; }
}
@media (max-width: 960px) {
  .nav__links { display: none; }
  .nav__hamburger { display: flex; }
  .footer__top { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .antes-depois { grid-template-columns: 1fr; }
  .pilares__grid { grid-template-columns: repeat(2, 1fr); }
  .sabores__grid { grid-template-columns: 1fr; }
  .tab-content img { aspect-ratio: 3 / 4; max-height: 300px; }
  .diferenciais__grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .steps__connector { display: none; }
  .para-quem__grid { grid-template-columns: 1fr; }
  .produto-grid { grid-template-columns: 1fr; gap: 32px; }
  .descricao__layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .descricao__visual { display: flex; }
  .descricao__photo { max-height: 380px; object-position: top; }
  .hero-short__stats { gap: 2rem; }
}
@media (max-width: 600px) {
  .section { padding-block: 56px; }
  .hero-short { padding-bottom: 48px; }
  .footer__top { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; gap: .5rem; text-align: center; }
  .pilares__grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .margem { padding: 2.5rem 1.5rem; }
  .cta-section { padding-block: 60px; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { text-align: center; }
  .antes-depois .ad-col { padding: 24px 20px; }
}

/* ─── Blog ───────────────────────────────────────────── */
.blog-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; margin-top: 3rem; }
.blog-card { background: var(--branco); border: 1px solid var(--borda); border-radius: var(--r-xl); overflow: hidden; transition: transform .2s, box-shadow .2s; text-decoration: none; display: block; }
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,.08); }
.blog-card__img { width: 100%; height: 220px; object-fit: cover; display: block; }
.blog-card__body { padding: 28px; }
.blog-card__tag { font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--ambar); margin-bottom: 10px; display: block; }
.blog-card__title { font-family: var(--font-display); font-size: 1.3rem; font-weight: 700; color: var(--marrom-escuro); line-height: 1.3; margin-bottom: .75rem; }
.blog-card__excerpt { font-size: .875rem; color: var(--subtexto); line-height: 1.75; margin-bottom: 1.25rem; }
.blog-card__meta { font-size: .75rem; color: var(--subtexto); opacity: .7; margin-bottom: 1.5rem; }

/* Article layout */
.article-header { max-width: 760px; margin: 0 auto; padding: 60px 28px 40px; text-align: center; }
.article-header__tag { font-size: .7rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--ambar); margin-bottom: 1rem; display: block; }
.article-header__title { font-family: var(--font-display); font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 700; color: var(--marrom-escuro); line-height: 1.2; margin-bottom: 1rem; }
.article-header__meta { font-size: .8rem; color: var(--subtexto); opacity: .7; }
.article-cover { max-width: 900px; margin: 0 auto 3rem; padding: 0 28px; }
.article-cover img { width: 100%; border-radius: var(--r-xl); aspect-ratio: 16/7; object-fit: cover; display: block; }
.article-body { max-width: 680px; margin: 0 auto; padding: 0 28px 80px; }
.article-body p { font-size: 1rem; line-height: 1.85; color: var(--subtexto); margin-bottom: 1.5rem; }
.article-body h2 { font-family: var(--font-display); font-size: 1.4rem; font-weight: 700; color: var(--marrom-escuro); margin: 2.5rem 0 .75rem; }
.article-body h3 { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; color: var(--marrom-escuro); margin: 2rem 0 .5rem; }
.article-body ul, .article-body ol { padding-left: 1.5rem; margin-bottom: 1.5rem; }
.article-body li { font-size: 1rem; line-height: 1.85; color: var(--subtexto); margin-bottom: .4rem; }
.article-body strong { color: var(--marrom-escuro); font-weight: 600; }
.article-body hr { border: none; border-top: 1px solid var(--borda); margin: 2.5rem 0; }
.article-cta { background: linear-gradient(135deg, var(--marrom-escuro), var(--marrom)); border-radius: var(--r-xl); padding: 36px; margin-top: 3rem; text-align: center; }
.article-cta p { color: rgba(255,255,255,.8) !important; margin-bottom: 1.25rem !important; }
.article-cta strong { color: white !important; }
@media (max-width: 768px) { .blog-grid { grid-template-columns: 1fr; } }
