/* ─────────────────────────────────────────────────────────
   SilFit — Editorial Caseira
   Stylesheet único com CSS custom properties
   ───────────────────────────────────────────────────────── */

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  /* ── Paleta — Editorial Caseira ── */
  --cream: #FAF7F2;
  --cream-warm: #F4EFE6;
  --cream-deep: #ECE4D4;
  --sage-light: #A8B89A;
  --sage: #6B8E5A;
  --sage-deep: #2D5016;
  --terracotta: #C65D3F;
  --terracotta-deep: #9B4426;
  --gold: #D4A574;
  --espresso: #2A1F1A;
  --espresso-soft: #4A3F36;
  --muted: #8B7E6F;
  --line: #E5DCC8;
  --white: #FFFFFF;
  --wa-green: #25D366;
  --wa-green-deep: #1EBE5A;

  /* ── Typography ── */
  --font-display: 'Playfair Display SC', Georgia, serif;
  --font-display-italic: 'Playfair Display', Georgia, serif;
  --font-body: 'Karla', -apple-system, BlinkMacSystemFont, sans-serif;

  /* ── Easing ── */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);

  /* ── Layout ── */
  --container: 1200px;
  --container-narrow: 880px;
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 24px;

  /* ── z-index scale ── */
  --z-header: 50;
  --z-popup: 100;
  --z-fab: 90;
  --z-toast: 110;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-size-adjust: 100%;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  font-family: var(--font-body);
  color: var(--espresso);
  background: var(--cream);
  line-height: 1.65;
  font-size: 17px;
  overflow-x: hidden;
}

/* Subtle paper texture overlay — adds warmth without weight */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

img { max-width: 100%; height: auto; display: block; }
button { font: inherit; cursor: pointer; }
a { color: inherit; text-decoration: none; }

/* ─────────────────────────────────────────────────────────
   Skip-to-content (a11y)
   ───────────────────────────────────────────────────────── */
.skip-link {
  position: absolute; left: -9999px; top: 16px;
  background: var(--sage-deep); color: var(--cream);
  padding: 12px 20px; border-radius: var(--radius-sm);
  z-index: 999; font-weight: 600;
}
.skip-link:focus { left: 16px; }

/* ─────────────────────────────────────────────────────────
   Container & section primitives
   ───────────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}
.container-narrow { max-width: var(--container-narrow); }

section {
  padding: 80px 0;
  position: relative;
}

@media (max-width: 768px) {
  section { padding: 56px 0; }
}

/* ─────────────────────────────────────────────────────────
   Typography utilities
   ───────────────────────────────────────────────────────── */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: '';
  display: inline-block;
  width: 36px;
  height: 1px;
  background: var(--terracotta);
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  color: var(--espresso);
  letter-spacing: -0.01em;
}

.section-title {
  font-size: clamp(2rem, 4.4vw, 3.4rem);
  line-height: 1.08;
  margin-bottom: 18px;
}
.section-title em {
  font-family: var(--font-display-italic);
  font-style: italic;
  font-weight: 400;
  color: var(--sage-deep);
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--espresso-soft);
  max-width: 620px;
  line-height: 1.7;
}

.section-header { margin-bottom: 56px; }
.section-header.center { text-align: center; }
.section-header.center .eyebrow { justify-content: center; }
.section-header.center .section-subtitle { margin-left: auto; margin-right: auto; }

/* ─────────────────────────────────────────────────────────
   Buttons
   ───────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  border: none;
  cursor: pointer;
  transition: all 280ms var(--ease-out);
  white-space: nowrap;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}
.btn:focus-visible {
  outline: 2px solid var(--sage-deep);
  outline-offset: 3px;
}

.btn-primary {
  background: var(--sage-deep);
  color: var(--cream);
  box-shadow: 0 4px 16px rgba(45, 80, 22, 0.18);
}
.btn-primary:hover {
  background: #1f3a0e;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(45, 80, 22, 0.32);
}
.btn-primary:active { transform: translateY(0); }

.btn-secondary {
  background: transparent;
  color: var(--espresso);
  border: 1.5px solid var(--espresso);
}
.btn-secondary:hover {
  background: var(--espresso);
  color: var(--cream);
}

.btn-whatsapp {
  background: var(--wa-green);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.25);
}
.btn-whatsapp:hover {
  background: var(--wa-green-deep);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.4);
}

.btn-large { padding: 20px 40px; font-size: 1.05rem; }

.icon { width: 18px; height: 18px; flex-shrink: 0; }

/* ─────────────────────────────────────────────────────────
   Top bar
   ───────────────────────────────────────────────────────── */
.top-bar {
  background: var(--sage-deep);
  color: var(--cream);
  text-align: center;
  font-size: 0.78rem;
  padding: 9px 16px;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.top-bar strong { color: var(--gold); font-weight: 700; }

/* ─────────────────────────────────────────────────────────
   Header
   ───────────────────────────────────────────────────────── */
.header {
  position: sticky;
  top: 0;
  z-index: var(--z-header);
  background: rgba(250, 247, 242, 0.92);
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  border-bottom: 1px solid transparent;
  transition: all 350ms var(--ease-out);
}
.header.scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 4px 24px rgba(42, 31, 26, 0.06);
}
.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  padding-bottom: 18px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--sage-deep);
  letter-spacing: -0.01em;
}
.logo-mark {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--sage-deep);
  display: flex; align-items: center; justify-content: center;
  color: var(--cream);
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 400;
}
.logo-text em {
  font-family: var(--font-display-italic);
  font-style: italic;
  color: var(--terracotta);
}

.nav {
  display: flex;
  gap: 36px;
  align-items: center;
}
.nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--espresso-soft);
  position: relative;
  transition: color 200ms var(--ease-out);
}
.nav a::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--terracotta);
  transition: width 250ms var(--ease-out);
}
.nav a:hover { color: var(--espresso); }
.nav a:hover::after { width: 100%; }

.header-cta {
  background: var(--sage-deep);
  color: var(--cream);
  padding: 11px 22px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  transition: all 250ms var(--ease-out);
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.header-cta:hover {
  background: #1f3a0e;
  transform: translateY(-1px);
}

@media (max-width: 900px) {
  .nav { display: none; }
}
@media (max-width: 480px) {
  .header-cta span { display: none; }
  .header-cta { padding: 11px; aspect-ratio: 1; justify-content: center; }
}

/* ─────────────────────────────────────────────────────────
   Hero
   ───────────────────────────────────────────────────────── */
.hero {
  position: relative;
  padding: 70px 0 90px;
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-warm) 100%);
  overflow: hidden;
}

/* Decorative organic shapes */
.hero-deco-1 {
  position: absolute;
  top: -100px;
  right: -120px;
  width: 460px; height: 460px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(168, 184, 154, 0.18) 0%, transparent 70%);
  pointer-events: none;
}
.hero-deco-2 {
  position: absolute;
  bottom: -80px;
  left: -100px;
  width: 380px; height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(198, 93, 63, 0.10) 0%, transparent 70%);
  pointer-events: none;
}

.hero .container {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 70px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--cream-deep);
  border: 1px solid var(--line);
  padding: 9px 18px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--sage-deep);
  letter-spacing: 0.04em;
  margin-bottom: 24px;
}
.hero-badge .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--wa-green);
  box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
  animation: pulse-dot 2.4s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
  50% { box-shadow: 0 0 0 8px rgba(37, 211, 102, 0); }
}

.hero h1 {
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  line-height: 1.02;
  margin-bottom: 22px;
  letter-spacing: -0.02em;
}
.hero h1 em {
  font-family: var(--font-display-italic);
  font-style: italic;
  color: var(--sage-deep);
  font-weight: 400;
}
.hero h1 .accent {
  color: var(--terracotta);
  font-family: var(--font-display-italic);
  font-style: italic;
}

.hero-sub {
  font-size: 1.18rem;
  color: var(--espresso-soft);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 520px;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--espresso-soft);
}
.hero-trust-item svg {
  color: var(--sage-deep);
  flex-shrink: 0;
}

/* Hero visual — editorial photo card stack */
.hero-visual {
  position: relative;
  height: 580px;
}
.hero-photo {
  position: absolute;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--cream-deep);
  box-shadow:
    0 20px 60px rgba(42, 31, 26, 0.18),
    0 8px 24px rgba(42, 31, 26, 0.10);
}
.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-photo-main {
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 78%;
  aspect-ratio: 4/5;
  z-index: 2;
}
.hero-photo-sub {
  bottom: 0; left: 0;
  width: 55%;
  aspect-ratio: 4/3;
  z-index: 3;
  border: 8px solid var(--cream);
}
.hero-photo-sub-2 {
  top: 60px; right: 0;
  width: 42%;
  aspect-ratio: 1;
  z-index: 1;
  border: 8px solid var(--cream);
}

/* Photo placeholder treatment */
.photo-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--sage-light), var(--sage));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  font-family: var(--font-display);
  font-size: 1.4rem;
  position: relative;
}
.photo-placeholder.terracotta {
  background: linear-gradient(135deg, #D17554, var(--terracotta));
}
.photo-placeholder.gold {
  background: linear-gradient(135deg, #E2BC8E, var(--gold));
}
.photo-placeholder svg {
  width: 64px; height: 64px;
  opacity: 0.6;
}

/* Floating quote card */
.hero-quote {
  position: absolute;
  bottom: 90px;
  right: -20px;
  z-index: 4;
  background: var(--white);
  padding: 18px 22px;
  border-radius: var(--radius);
  box-shadow: 0 12px 36px rgba(42, 31, 26, 0.15);
  max-width: 220px;
  border: 1px solid var(--line);
}
.hero-quote .stars {
  display: flex; gap: 2px; margin-bottom: 6px; color: var(--gold);
}
.hero-quote p {
  font-family: var(--font-display-italic);
  font-style: italic;
  font-size: 0.92rem;
  color: var(--espresso);
  line-height: 1.5;
}
.hero-quote cite {
  display: block;
  margin-top: 8px;
  font-size: 0.75rem;
  color: var(--muted);
  font-style: normal;
  font-family: var(--font-body);
  font-weight: 600;
}

@media (max-width: 980px) {
  .hero .container { grid-template-columns: 1fr; gap: 50px; }
  .hero-visual { height: 460px; max-width: 480px; margin: 0 auto; }
  .hero-quote { right: 0; bottom: 50px; }
}
@media (max-width: 480px) {
  .hero { padding: 50px 0 70px; }
  .hero-visual { height: 380px; }
}

/* ─────────────────────────────────────────────────────────
   Sobre — story section
   ───────────────────────────────────────────────────────── */
.sobre {
  background: var(--cream);
}
.sobre .container {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 70px;
  align-items: center;
}
.sobre-photo {
  position: relative;
}
.sobre-photo-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: 0 20px 50px rgba(42, 31, 26, 0.15);
  background: var(--cream-deep);
}
.sobre-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.sobre-photo-frame .photo-placeholder { font-size: 1.6rem; }
.sobre-photo::before {
  content: '';
  position: absolute;
  inset: 14px -14px -14px 14px;
  border: 2px solid var(--terracotta);
  border-radius: var(--radius-lg);
  z-index: -1;
}

.sobre-content h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  margin-bottom: 24px;
}
.sobre-content h2 em {
  font-family: var(--font-display-italic);
  font-style: italic;
  color: var(--terracotta);
}
.sobre-content p {
  font-size: 1.05rem;
  color: var(--espresso-soft);
  line-height: 1.8;
  margin-bottom: 18px;
}
.sobre-tagline {
  font-family: var(--font-display-italic);
  font-style: italic;
  font-size: 1.4rem !important;
  color: var(--sage-deep) !important;
  border-left: 3px solid var(--terracotta);
  padding-left: 20px;
  margin: 28px 0 !important;
}

.sobre-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.sobre-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--cream-warm);
  border: 1px solid var(--line);
  padding: 9px 16px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--espresso);
}
.sobre-badge svg { color: var(--sage-deep); }

@media (max-width: 900px) {
  .sobre .container { grid-template-columns: 1fr; gap: 50px; }
  .sobre-photo { max-width: 360px; margin: 0 auto; }
}

/* ─────────────────────────────────────────────────────────
   Cardápio — Fit & Tradicional
   ───────────────────────────────────────────────────────── */
.cardapio {
  background: var(--cream-warm);
}
.cardapio.tradicional {
  background: var(--cream);
}

.menu-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 24px;
  flex-wrap: wrap;
}
.menu-price-tag {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--sage-deep);
  background: var(--cream);
  padding: 12px 22px;
  border-radius: 999px;
  border: 1.5px solid var(--sage-deep);
}
.menu-price-tag .currency { font-size: 1rem; opacity: 0.7; }
.menu-price-tag .label { font-family: var(--font-body); font-size: 0.78rem; color: var(--espresso-soft); margin-left: 8px; font-weight: 500; }

.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media (max-width: 768px) {
  .menu-grid { grid-template-columns: 1fr; }
}

.menu-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 380ms var(--ease-out);
  display: flex;
  flex-direction: column;
}
.cardapio.tradicional .menu-card { background: var(--cream-warm); }
.menu-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(42, 31, 26, 0.10);
  border-color: var(--terracotta);
}

.menu-card-photo {
  aspect-ratio: 4/5;
  position: relative;
  overflow: hidden;
  background: var(--cream-deep);
}
.menu-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms var(--ease-out);
}
.menu-card:hover .menu-card-photo img {
  transform: scale(1.04);
}
.menu-card-photo .photo-placeholder { font-size: 1.05rem; }
.menu-card-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--white);
  color: var(--sage-deep);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.menu-card-body {
  padding: 26px 24px 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.menu-card-code {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--terracotta);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.menu-card h3 {
  font-size: 1.35rem;
  font-family: var(--font-display);
  line-height: 1.2;
  margin-bottom: 10px;
}
.menu-card p {
  font-size: 0.9rem;
  color: var(--espresso-soft);
  line-height: 1.65;
  margin-bottom: auto;
  padding-bottom: 18px;
}
.menu-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--sage-deep);
  padding: 12px 18px;
  background: var(--cream-warm);
  border-radius: 999px;
  border: 1px solid var(--line);
  transition: all 250ms var(--ease-out);
  align-self: flex-start;
}
.cardapio.tradicional .menu-card-cta { background: var(--cream); }
.menu-card-cta:hover {
  background: var(--sage-deep);
  color: var(--cream);
  border-color: var(--sage-deep);
}
.menu-card-cta svg { transition: transform 250ms var(--ease-out); }
.menu-card-cta:hover svg { transform: translateX(3px); }

/* ─────────────────────────────────────────────────────────
   Combos
   ───────────────────────────────────────────────────────── */
.combos {
  background: var(--sage-deep);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.combos::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 20%, rgba(212, 165, 116, 0.08), transparent 50%),
                    radial-gradient(circle at 80% 80%, rgba(198, 93, 63, 0.08), transparent 50%);
  pointer-events: none;
}
.combos .eyebrow { color: var(--gold); }
.combos .eyebrow::before { background: var(--gold); }
.combos .section-title { color: var(--cream); }
.combos .section-title em { color: var(--gold); }
.combos .section-subtitle { color: rgba(250, 247, 242, 0.78); }

.combos-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 880px;
}
@media (max-width: 768px) {
  .combos-grid { grid-template-columns: 1fr; }
}

.combo-card {
  background: rgba(250, 247, 242, 0.06);
  border: 1px solid rgba(250, 247, 242, 0.14);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all 350ms var(--ease-out);
  position: relative;
}
.combo-card:hover {
  background: rgba(250, 247, 242, 0.10);
  transform: translateY(-4px);
  border-color: var(--gold);
}
.combo-card.featured {
  border-color: var(--gold);
  background: rgba(212, 165, 116, 0.10);
}
.combo-card.featured::before {
  content: 'Mais escolhido';
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--espresso);
  padding: 6px 18px;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.combo-card-label {
  font-size: 0.78rem;
  color: var(--gold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 10px;
}
.combo-card h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--cream);
  margin-bottom: 6px;
}
.combo-card .qty {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: rgba(250, 247, 242, 0.7);
  margin-bottom: 22px;
}
.combo-price {
  font-family: var(--font-display);
  font-size: 3.2rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}
.combo-price .currency { font-size: 1.4rem; opacity: 0.8; }
.combo-unit {
  font-size: 0.85rem;
  color: rgba(250, 247, 242, 0.6);
  margin-bottom: 26px;
}
.combo-card .btn-whatsapp {
  width: 100%;
  margin-top: 6px;
}

.combo-note {
  text-align: center;
  margin-top: 36px;
  font-size: 0.92rem;
  color: rgba(250, 247, 242, 0.7);
  font-family: var(--font-display-italic);
  font-style: italic;
}
.combo-note strong { color: var(--gold); font-style: normal; font-weight: 600; }

/* ─────────────────────────────────────────────────────────
   Área de Entrega
   ───────────────────────────────────────────────────────── */
.entrega {
  background: var(--cream);
}
.entrega .container {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 900px) {
  .entrega .container { grid-template-columns: 1fr; gap: 40px; }
}

.entrega-cities {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 32px;
}
.entrega-city {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--cream-warm);
  border: 1px solid var(--line);
  padding: 16px 20px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 250ms var(--ease-out);
}
.entrega-city:hover {
  border-color: var(--sage);
  background: var(--cream-deep);
}
.entrega-city svg { color: var(--sage-deep); flex-shrink: 0; }

.entrega-info {
  background: var(--cream-warm);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px;
  position: relative;
  overflow: hidden;
}
.entrega-info::before {
  content: '';
  position: absolute;
  top: -50px; right: -50px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(168, 184, 154, 0.18), transparent 70%);
}
.entrega-info-icon {
  width: 60px; height: 60px;
  background: var(--sage-deep);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  margin-bottom: 22px;
  position: relative;
}
.entrega-info h3 {
  font-size: 1.5rem;
  margin-bottom: 14px;
  position: relative;
}
.entrega-info p {
  color: var(--espresso-soft);
  line-height: 1.7;
  font-size: 0.96rem;
  position: relative;
  margin-bottom: 18px;
}
.entrega-info ul {
  list-style: none;
  position: relative;
}
.entrega-info ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
  font-size: 0.92rem;
  color: var(--espresso);
}
.entrega-info ul li svg { color: var(--terracotta); flex-shrink: 0; }

/* ─────────────────────────────────────────────────────────
   Depoimentos
   ───────────────────────────────────────────────────────── */
.depoimentos {
  background: var(--cream-warm);
}
.depoimentos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 900px) {
  .depoimentos-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
}
.depoimento {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: all 350ms var(--ease-out);
  position: relative;
}
.depoimento:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(42, 31, 26, 0.08);
  border-color: var(--terracotta);
}
.depoimento .stars {
  display: flex; gap: 2px; margin-bottom: 14px;
  color: var(--gold);
}
.depoimento blockquote {
  font-family: var(--font-display-italic);
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--espresso);
  margin-bottom: 22px;
}
.depoimento-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.depoimento-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--sage);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.05rem;
  flex-shrink: 0;
}
.depoimento-info strong {
  display: block;
  font-weight: 700;
  color: var(--espresso);
  font-size: 0.92rem;
}
.depoimento-info span {
  font-size: 0.78rem;
  color: var(--muted);
}

/* ─────────────────────────────────────────────────────────
   FAQ
   ───────────────────────────────────────────────────────── */
.faq {
  background: var(--cream);
}
.faq-list {
  max-width: 760px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item:first-child { border-top: 1px solid var(--line); }
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 26px 4px;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-body);
  font-size: 1.08rem;
  font-weight: 600;
  color: var(--espresso);
  cursor: pointer;
  transition: color 200ms var(--ease-out);
}
.faq-question:hover { color: var(--sage-deep); }
.faq-question .chevron {
  width: 20px; height: 20px;
  flex-shrink: 0;
  transition: transform 350ms var(--ease-out);
  color: var(--terracotta);
}
.faq-item.open .faq-question { color: var(--sage-deep); }
.faq-item.open .chevron { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 450ms var(--ease-out);
}
.faq-answer-inner {
  padding: 0 4px 26px;
  color: var(--espresso-soft);
  line-height: 1.75;
  font-size: 0.98rem;
}

/* ─────────────────────────────────────────────────────────
   CTA Final
   ───────────────────────────────────────────────────────── */
.cta-final {
  background: linear-gradient(135deg, var(--sage-deep) 0%, #1f3a0e 100%);
  color: var(--cream);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-final::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(212, 165, 116, 0.12), transparent 70%);
  pointer-events: none;
}
.cta-final .container { position: relative; z-index: 2; }
.cta-final .eyebrow {
  color: var(--gold);
  justify-content: center;
}
.cta-final .eyebrow::before { background: var(--gold); }
.cta-final h2 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1.1;
  color: var(--cream);
  margin-bottom: 18px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.cta-final h2 em {
  font-family: var(--font-display-italic);
  font-style: italic;
  color: var(--gold);
}
.cta-final p {
  font-size: 1.15rem;
  color: rgba(250, 247, 242, 0.85);
  max-width: 580px;
  margin: 0 auto 36px;
  line-height: 1.7;
}
.cta-urgency {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--gold);
  margin-top: 28px;
  font-weight: 500;
}

/* ─────────────────────────────────────────────────────────
   Footer
   ───────────────────────────────────────────────────────── */
.footer {
  background: var(--espresso);
  color: var(--cream);
  padding: 60px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 50px;
}
@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
}
.footer-brand {
  display: flex; align-items: center; gap: 10px; margin-bottom: 18px;
}
.footer-brand .logo-mark {
  background: var(--gold);
  color: var(--espresso);
}
.footer-brand .logo-text {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--cream);
}
.footer-brand .logo-text em {
  font-family: var(--font-display-italic);
  font-style: italic;
  color: var(--gold);
}
.footer-tagline {
  color: rgba(250, 247, 242, 0.6);
  font-family: var(--font-display-italic);
  font-style: italic;
  font-size: 1rem;
  margin-bottom: 22px;
}
.footer h4 {
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
  font-weight: 700;
}
.footer ul { list-style: none; }
.footer ul li { padding: 6px 0; }
.footer ul a {
  color: rgba(250, 247, 242, 0.7);
  font-size: 0.92rem;
  transition: color 200ms var(--ease-out);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.footer ul a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(250, 247, 242, 0.1);
  padding-top: 24px;
  text-align: center;
  font-size: 0.82rem;
  color: rgba(250, 247, 242, 0.5);
}
.footer-bottom a { color: var(--gold); }

/* ─────────────────────────────────────────────────────────
   WhatsApp Floating Action Button
   ───────────────────────────────────────────────────────── */
.wa-fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: var(--z-fab);
  width: 60px; height: 60px;
  background: var(--wa-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  transition: all 350ms var(--ease-spring);
}
.wa-fab:hover {
  transform: scale(1.08);
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.55);
}
.wa-fab svg { width: 30px; height: 30px; }
.wa-fab::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid var(--wa-green);
  animation: ripple 2.4s var(--ease-out) infinite;
}
@keyframes ripple {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.6); opacity: 0; }
}

/* ─────────────────────────────────────────────────────────
   Pop-up de Captura LGPD
   ───────────────────────────────────────────────────────── */
.popup-overlay {
  position: fixed;
  inset: 0;
  z-index: var(--z-popup);
  background: rgba(42, 31, 26, 0.72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 350ms var(--ease-out);
}
.popup-overlay.active {
  opacity: 1;
  visibility: visible;
}

.popup {
  background: var(--cream);
  border-radius: var(--radius-lg);
  max-width: 460px;
  width: 100%;
  padding: 40px 36px 36px;
  position: relative;
  transform: translateY(30px) scale(0.96);
  transition: transform 450ms var(--ease-spring);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.4);
  max-height: 92vh;
  overflow-y: auto;
}
.popup-overlay.active .popup { transform: translateY(0) scale(1); }

.popup-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 36px; height: 36px;
  background: var(--cream-deep);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--espresso);
  transition: all 200ms var(--ease-out);
}
.popup-close:hover { background: var(--terracotta); color: var(--cream); }

.popup-eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 10px;
}
.popup h3 {
  font-family: var(--font-display);
  font-size: 1.7rem;
  line-height: 1.2;
  margin-bottom: 12px;
}
.popup h3 em {
  font-family: var(--font-display-italic);
  font-style: italic;
  color: var(--sage-deep);
}
.popup-desc {
  font-size: 0.94rem;
  color: var(--espresso-soft);
  line-height: 1.65;
  margin-bottom: 24px;
}

.form-field { margin-bottom: 16px; }
.form-field label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--espresso);
  margin-bottom: 6px;
}
.form-field input[type="text"],
.form-field input[type="tel"] {
  width: 100%;
  padding: 14px 18px;
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  font: inherit;
  font-size: 0.95rem;
  color: var(--espresso);
  transition: all 200ms var(--ease-out);
}
.form-field input:focus {
  outline: none;
  border-color: var(--sage-deep);
  box-shadow: 0 0 0 3px rgba(45, 80, 22, 0.15);
}
.form-field input.error {
  border-color: var(--terracotta);
  box-shadow: 0 0 0 3px rgba(198, 93, 63, 0.15);
}
.form-error {
  font-size: 0.78rem;
  color: var(--terracotta);
  margin-top: 4px;
  display: none;
}
.form-field.has-error .form-error { display: block; }

.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 18px 0 24px;
  font-size: 0.82rem;
  color: var(--espresso-soft);
  line-height: 1.55;
  cursor: pointer;
}
.form-consent input[type="checkbox"] {
  margin-top: 3px;
  width: 18px; height: 18px;
  accent-color: var(--sage-deep);
  flex-shrink: 0;
  cursor: pointer;
}
.form-consent a {
  color: var(--sage-deep);
  text-decoration: underline;
  font-weight: 600;
}

.popup .btn {
  width: 100%;
}
.popup .btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.popup-loading {
  display: none;
  width: 18px; height: 18px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: var(--cream);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
.popup .btn.loading .popup-loading { display: inline-block; }
.popup .btn.loading .btn-text { display: none; }
@keyframes spin { to { transform: rotate(360deg); } }

.popup-trust {
  margin-top: 18px;
  font-size: 0.74rem;
  color: var(--muted);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.popup-trust svg { color: var(--sage-deep); }

/* ─────────────────────────────────────────────────────────
   Reveal animations (Intersection Observer triggered)
   ───────────────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 850ms var(--ease-out), transform 850ms var(--ease-out);
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.reveal-d1 { transition-delay: 0.08s; }
.reveal-d2 { transition-delay: 0.16s; }
.reveal-d3 { transition-delay: 0.24s; }
.reveal-d4 { transition-delay: 0.32s; }
.reveal-d5 { transition-delay: 0.40s; }
.reveal-d6 { transition-delay: 0.48s; }

/* Hero entrance staggered */
.hero-entry {
  opacity: 0;
  transform: translateY(24px);
  animation: hero-rise 900ms var(--ease-out) forwards;
}
.hero-entry-1 { animation-delay: 0.10s; }
.hero-entry-2 { animation-delay: 0.22s; }
.hero-entry-3 { animation-delay: 0.34s; }
.hero-entry-4 { animation-delay: 0.46s; }
.hero-entry-5 { animation-delay: 0.58s; }
@keyframes hero-rise {
  to { opacity: 1; transform: none; }
}

/* ─────────────────────────────────────────────────────────
   Política de Privacidade page
   ───────────────────────────────────────────────────────── */
.privacy-page {
  padding: 80px 0;
  max-width: 760px;
  margin: 0 auto;
}
.privacy-page h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 12px;
}
.privacy-page .last-update {
  color: var(--muted);
  font-size: 0.85rem;
  margin-bottom: 40px;
  font-style: italic;
}
.privacy-page h2 {
  font-size: 1.5rem;
  margin-top: 36px;
  margin-bottom: 14px;
}
.privacy-page p, .privacy-page li {
  color: var(--espresso-soft);
  line-height: 1.8;
  margin-bottom: 14px;
  font-size: 0.98rem;
}
.privacy-page ul {
  padding-left: 22px;
  margin-bottom: 18px;
}

/* ─────────────────────────────────────────────────────────
   Print styles
   ───────────────────────────────────────────────────────── */
@media print {
  .top-bar, .header-cta, .wa-fab, .popup-overlay { display: none !important; }
  body { background: white; color: black; }
}
