/* =========================================================
   JARDIM DAS GERAIS — Página de Conversão
   Tema: Claro & Elegante (off-white + grafite + dourado/bronze)
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:wght@400;500;600;700;800;900&display=swap');

/* ========================================
   VARIÁVEIS / DESIGN TOKENS
   ======================================== */
:root {
  /* Fundo e superfícies */
  --bg-color: #F6F2EB;          /* off-white / areia */
  --bg-secondary: #FFFFFF;      /* seções claras / cards */
  --bg-tertiary: #EFE9DF;       /* areia mais fechada p/ alternância */
  --footer-bg: #1B211C;         /* rodapé grafite-esverdeado */

  /* Texto */
  --text-color: #23281F;        /* grafite quente */
  --text-strong: #14170F;
  --text-muted: #6C6A5F;        /* cinza quente */
  --text-on-dark: #F2EEE6;

  /* Marca */
  --primary-color: #2E5A38;     /* verde profundo, usado com parcimônia */
  --primary-dark: #23482C;
  --primary-light: #3C7248;
  --accent-color: #B08D57;      /* dourado/bronze refinado */
  --accent-light: #C9A96A;
  --accent-dark: #8C6C3D;
  --accent-soft: rgba(176, 141, 87, 0.12);

  /* WhatsApp */
  --whatsapp-green: #25D366;
  --whatsapp-dark: #17a74a;

  /* Estruturais */
  --line: rgba(35, 40, 31, 0.10);
  --line-strong: rgba(35, 40, 31, 0.16);
  --card-bg: #FFFFFF;
  --card-shadow: 0 18px 45px rgba(35, 40, 31, 0.08);
  --card-shadow-hover: 0 28px 60px rgba(35, 40, 31, 0.14);

  --font-heading: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
  --transition: all 0.3s ease;
  --transition-slow: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --radius: 16px;
  --maxw: 1100px;
}

/* ========================================
   RESET
   ======================================== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background-color: var(--bg-color);
  color: var(--text-color);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-tertiary); }
::-webkit-scrollbar-thumb { background: var(--accent-color); border-radius: 10px; }

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ========================================
   TIPOGRAFIA
   ======================================== */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text-strong);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.45rem 1.2rem;
  background: var(--accent-soft);
  border: 1px solid rgba(176, 141, 87, 0.3);
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--accent-dark);
}

.eyebrow .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--primary-color);
  animation: blink 1.6s ease-in-out infinite;
}
@keyframes blink { 0%,100%{opacity:1;} 50%{opacity:.3;} }

.section-title {
  font-size: clamp(1.7rem, 4.5vw, 2.7rem);
  text-align: center;
  color: var(--text-strong);
  margin-bottom: 1rem;
}
.section-title .gold { color: var(--accent-dark); font-style: italic; }

.section-subtitle {
  text-align: center;
  color: var(--text-muted);
  font-size: clamp(0.98rem, 2vw, 1.15rem);
  max-width: 640px;
  margin: 0 auto 3rem;
  font-weight: 400;
  line-height: 1.7;
}

.section-pad { padding: 5.5rem 1.5rem; }

/* ========================================
   BOTÕES
   ======================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 1.05rem 2.3rem;
  font-size: 1rem;
  font-weight: 600;
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  position: relative;
  overflow: visible;
  isolation: isolate;
}

.btn-whatsapp {
  color: #fff;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
  box-shadow: 0 12px 30px rgba(46, 90, 56, 0.30);
  font-size: 1.02rem;
  padding: 1.15rem 2.6rem;
}
.btn-whatsapp:hover { transform: translateY(-3px) scale(1.015); box-shadow: 0 18px 42px rgba(46, 90, 56, 0.45); }
/* Ícone removido dos botões (a pedido) */
.btn .btn-icon { display: none; }

/* Overlay WebGL do efeito especular (SpecularButton) */
.sb-fx {
  position: absolute;
  inset: -20px;
  z-index: -1;
  pointer-events: none;
}
.sb-fx canvas { width: 100%; height: 100%; display: block; }

.btn-gold {
  color: #2a2413;
  background: linear-gradient(135deg, var(--accent-light), var(--accent-color));
  box-shadow: 0 12px 30px rgba(176, 141, 87, 0.3);
}
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 18px 42px rgba(176,141,87,0.45); }

@keyframes pulse-glow {
  0%,100% { box-shadow: 0 12px 30px rgba(46,90,56,0.30); }
  50% { box-shadow: 0 12px 46px rgba(46,90,56,0.55), 0 0 18px rgba(176,141,87,0.25); }
}
.btn-pulse { animation: pulse-glow 2.6s ease-in-out infinite; }

/* ========================================
   TOP ANNOUNCEMENT BAR
   ======================================== */
.topbar {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
  color: var(--text-on-dark);
  text-align: center;
  padding: 0.7rem 1rem;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.3px;
  position: relative;
  z-index: 50;
}
.topbar strong { color: #F0D9A8; font-weight: 700; }
.topbar .sep { opacity: 0.5; margin: 0 0.5rem; }

/* ========================================
   HERO
   ======================================== */
.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3.5rem 1.5rem 4.5rem;
  background:
    radial-gradient(ellipse at 50% -10%, rgba(46, 90, 56, 0.10) 0%, transparent 55%),
    radial-gradient(ellipse at 90% 20%, rgba(176, 141, 87, 0.10) 0%, transparent 45%),
    var(--bg-color);
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 860px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-eyebrow { margin-bottom: 1.6rem; animation: fadeInDown 0.8s ease 0.1s both; }

.hero-title {
  font-size: clamp(2.1rem, 6vw, 3.9rem);
  font-weight: 800;
  color: var(--text-strong);
  margin-bottom: 1.1rem;
  line-height: 1.1;
  letter-spacing: -0.5px;
  animation: fadeInUp 0.8s ease 0.25s both;
}
.hero-title .gold {
  color: var(--accent-dark);
  font-style: italic;
}

.hero-pain {
  font-size: clamp(1rem, 2.6vw, 1.28rem);
  font-weight: 400;
  color: var(--text-muted);
  margin-bottom: 1.8rem;
  max-width: 640px;
  line-height: 1.65;
  animation: fadeInUp 0.8s ease 0.4s both;
}

/* Faixa de preço */
.hero-price {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.4rem 1.1rem;
  padding: 0.9rem 1.6rem;
  background: var(--card-bg);
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  box-shadow: var(--card-shadow);
  margin-bottom: 2rem;
  animation: fadeInUp 0.8s ease 0.55s both;
}
.hero-price .price-main { font-family: var(--font-heading); font-weight: 800; color: var(--text-strong); font-size: 1.35rem; }
.hero-price .price-main b { color: var(--primary-color); }
.hero-price .price-tag {
  font-size: 0.82rem; color: var(--accent-dark); font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.5px;
  padding-left: 1.1rem; border-left: 1px solid var(--line);
}
.hero-price .price-tag.no-border { border-left: none; padding-left: 0; }

.hero-video {
  width: 100%;
  max-width: 760px;
  margin-bottom: 2rem;
  animation: fadeInUp 0.8s ease 0.7s both;
}

.hero-cta-area {
  display: flex; flex-direction: column; align-items: center; gap: 0.75rem;
  width: 100%; max-width: 520px;
  animation: fadeInUp 0.8s ease 0.85s both;
}
.hero-cta-hint {
  font-size: 0.8rem; color: var(--text-muted);
  display: flex; align-items: center; justify-content: center; gap: 0.4rem;
}
.hero-cta-hint .lock-icon { width: 14px; height: 14px; opacity: 0.6; }

/* ========================================
   VIDEO FRAME (iframe Drive OU mp4)
   ======================================== */
.video-frame {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 26px 60px rgba(35, 40, 31, 0.22);
  border: 1px solid var(--line-strong);
  background: #000;
  position: relative;
}
.video-ratio {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}
.video-ratio iframe,
.video-ratio video {
  position: absolute; top: 0; left: 0;
  width: 100%; height: 100%;
  border: 0;
  object-fit: cover;
}

/* ========================================
   DOR / IDENTIFICAÇÃO
   ======================================== */
.pain-section { background: var(--bg-secondary); }
.pain-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.3rem;
  max-width: var(--maxw);
  margin: 0 auto;
}
.pain-card {
  background: var(--bg-color);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.8rem 1.6rem;
  transition: var(--transition-slow);
}
.pain-card:hover { transform: translateY(-5px); box-shadow: var(--card-shadow); border-color: var(--line-strong); }
.pain-card .pain-top {
  display: flex; align-items: center; gap: 0.7rem; margin-bottom: 0.9rem;
  color: #b5482f; font-weight: 600; font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.5px;
}
.pain-card .pain-top svg { width: 20px; height: 20px; flex-shrink: 0; }
.pain-card h3 { font-size: 1.12rem; margin-bottom: 0.5rem; color: var(--text-strong); }
.pain-card p { font-size: 0.92rem; color: var(--text-muted); line-height: 1.6; }
.pain-card .pain-fix {
  display: flex; align-items: flex-start; gap: 0.5rem; margin-top: 0.9rem;
  padding-top: 0.9rem; border-top: 1px solid var(--line);
  font-size: 0.9rem; color: var(--primary-color); font-weight: 500;
}
.pain-card .pain-fix svg { width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px; color: var(--primary-color); }

.center-cta { text-align: center; margin-top: 3rem; }

/* ========================================
   BENEFÍCIOS
   ======================================== */
.benefits-section { background: var(--bg-color); }
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.4rem;
  max-width: var(--maxw);
  margin: 0 auto;
}
.benefit-card {
  background: var(--card-bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem 1.8rem;
  transition: var(--transition-slow);
  position: relative;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(35,40,31,0.04);
}
.benefit-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--accent-color), var(--primary-color));
  opacity: 0; transition: var(--transition);
}
.benefit-card:hover { transform: translateY(-6px); box-shadow: var(--card-shadow-hover); border-color: var(--line-strong); }
.benefit-card:hover::before { opacity: 1; }
.benefit-icon {
  width: 48px; height: 48px; margin-bottom: 1.2rem;
  display: flex; align-items: center; justify-content: center;
  background: var(--accent-soft);
  border: 1px solid rgba(176,141,87,0.25);
  border-radius: 12px; padding: 11px;
  color: var(--accent-dark);
}
.benefit-icon svg { width: 26px; height: 26px; }
.benefit-card h3 { font-size: 1.18rem; color: var(--text-strong); margin-bottom: 0.55rem; }
.benefit-card p { font-size: 0.93rem; color: var(--text-muted); line-height: 1.65; }

/* ========================================
   OFERTA / PREÇOS E PLANOS
   ======================================== */
.offer-section {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(46,90,56,0.08), transparent 60%),
    var(--bg-tertiary);
}
.offer-card {
  max-width: 820px;
  margin: 0 auto;
  background: var(--card-bg);
  border: 1px solid var(--line-strong);
  border-radius: 22px;
  box-shadow: var(--card-shadow);
  overflow: hidden;
}
.offer-head {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
  color: var(--text-on-dark);
  text-align: center;
  padding: 2.2rem 1.5rem 2rem;
  position: relative;
  overflow: hidden;
}
.offer-head::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 80% -20%, rgba(176,141,87,0.35), transparent 55%);
  pointer-events: none;
}
.offer-head .offer-label {
  font-size: 0.78rem; text-transform: uppercase; letter-spacing: 2px;
  color: #EBD3A3; font-weight: 600; margin-bottom: 0.6rem; position: relative; z-index: 1;
}
.offer-head .offer-from { font-size: 0.9rem; opacity: 0.85; position: relative; z-index: 1; }
.offer-head .offer-price {
  font-family: var(--font-heading); font-weight: 800;
  font-size: clamp(2.6rem, 8vw, 3.6rem); line-height: 1; margin: 0.3rem 0;
  color: #fff; position: relative; z-index: 1;
}
.offer-head .offer-terms {
  font-size: 1.02rem; font-weight: 500; position: relative; z-index: 1;
  color: #F0E7D3;
}
.offer-head .offer-terms b { color: #fff; }

.offer-body { padding: 2rem 1.8rem 2.4rem; }
.offer-list { list-style: none; max-width: 560px; margin: 0 auto 1.8rem; }
.offer-list li {
  display: flex; align-items: flex-start; gap: 0.8rem;
  padding: 0.7rem 0; border-bottom: 1px solid var(--line);
  font-size: 0.98rem; color: var(--text-color);
}
.offer-list li:last-child { border-bottom: none; }
.offer-list li .check {
  flex-shrink: 0; width: 22px; height: 22px; border-radius: 50%;
  background: var(--primary-color); color: #fff;
  display: flex; align-items: center; justify-content: center; margin-top: 1px;
}
.offer-list li .check svg { width: 13px; height: 13px; }
.offer-list li b { color: var(--text-strong); }
.offer-cta { text-align: center; }
.offer-note { font-size: 0.78rem; color: var(--text-muted); margin-top: 0.9rem; }

/* ========================================
   GALERIA — Carrossel
   ======================================== */
.gallery-section { padding: 5.5rem 0; overflow: hidden; background: var(--bg-secondary); }
.gallery-section .section-title, .gallery-section .section-subtitle { padding: 0 1.5rem; }
.gallery-wrapper { position: relative; max-width: 100%; }
.gallery-arrow {
  display: none; position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 10; width: 50px; height: 50px; border-radius: 50%;
  background: rgba(255,255,255,0.9); border: 1px solid var(--line-strong);
  backdrop-filter: blur(6px); color: var(--accent-dark);
  font-size: 1.4rem; cursor: pointer; transition: var(--transition);
  align-items: center; justify-content: center; box-shadow: var(--card-shadow);
}
.gallery-arrow:hover { background: #fff; transform: translateY(-50%) scale(1.08); color: var(--primary-color); }
.gallery-arrow--left { left: 24px; }
.gallery-arrow--right { right: 24px; }
@media (min-width: 769px) { .gallery-arrow { display: flex; } }

.gallery-track {
  display: flex; gap: 18px; overflow-x: auto;
  scroll-snap-type: x mandatory; scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding: 2rem 0;
  padding-left: calc(50vw - 160px); padding-right: calc(50vw - 160px);
  scrollbar-width: none; -ms-overflow-style: none;
}
.gallery-track::-webkit-scrollbar { display: none; }
.gallery-item {
  flex-shrink: 0; width: 300px; height: 400px;
  border-radius: var(--radius); overflow: hidden;
  scroll-snap-align: center;
  transition: transform .5s cubic-bezier(.25,.46,.45,.94), box-shadow .5s ease, opacity .5s ease, border-color .5s ease;
  position: relative; opacity: 0.5; transform: scale(0.86);
  border: 1px solid var(--line);
}
.gallery-item.is-center {
  opacity: 1; transform: scale(1.04);
  box-shadow: 0 28px 60px rgba(35,40,31,0.25);
  border-color: var(--accent-color);
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; }
.gallery-dots { display: flex; justify-content: center; gap: 7px; margin-top: 1.5rem; flex-wrap: wrap; padding: 0 1rem; }
.gallery-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(35,40,31,0.15); border: none; cursor: pointer; transition: var(--transition); padding: 0; }
.gallery-dot.active { background: var(--accent-color); transform: scale(1.4); }

/* ========================================
   DEPTH CAROUSEL (efeito 3D) — galerias
   ======================================== */
.depth-carousel {
  position: relative;
  width: 100%;
  height: clamp(440px, 56vw, 640px);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
  cursor: grab;
  touch-action: pan-y;
  user-select: none;
  -webkit-user-select: none;
}
.depth-carousel:active { cursor: grabbing; }
/* Fallback antes do JS montar: mostra a 1ª imagem sem quebrar layout */
.depth-carousel:not(.dc-ready) img { display: none; }
.depth-carousel:not(.dc-ready) img:first-of-type {
  display: block; max-width: 340px; height: auto;
  border-radius: 16px; margin: 0 auto; opacity: 0.9;
}
.dc-stage { position: absolute; inset: 0; transform-style: preserve-3d; }
.dc-card {
  position: absolute; top: 50%; left: 50%;
  background: #0b0d12; overflow: hidden;
  transform: translate(-50%, -50%);
  transform-origin: center; cursor: pointer;
  will-change: transform, opacity, filter;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.55), 0 8px 20px -10px rgba(0,0,0,0.4);
}
.dc-card img {
  display: block; width: 100%; height: 100%;
  object-fit: cover; pointer-events: none; -webkit-user-drag: none;
}
.dc-overlay {
  position: absolute; inset: 0; opacity: 0;
  pointer-events: none; mix-blend-mode: multiply;
}
.dc-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 3000; display: grid; place-items: center;
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,0.9); border: 1px solid var(--line-strong);
  color: var(--accent-dark); cursor: pointer;
  box-shadow: var(--card-shadow);
  transition: background .2s, transform .2s, color .2s;
}
.dc-arrow:hover { background: #fff; color: var(--primary-color); transform: translateY(-50%) scale(1.08); }
.dc-arrow:active { transform: translateY(-50%) scale(0.95); }
.dc-prev { left: 16px; }
.dc-next { right: 16px; }
.dc-dots {
  position: absolute; bottom: 6px; left: 50%; transform: translateX(-50%);
  z-index: 3000; display: flex; gap: 7px;
  background: rgba(255,255,255,0.55); backdrop-filter: blur(6px);
  padding: 8px 12px; border-radius: 100px; border: 1px solid var(--line);
}
.dc-dot {
  width: 7px; height: 7px; border-radius: 100px; border: none;
  background: rgba(35,40,31,0.25); cursor: pointer; padding: 0;
  transition: width .25s, background .25s;
}
.dc-dot.active { width: 20px; background: var(--accent-color); }

@media (max-width: 768px) {
  .depth-carousel { height: clamp(360px, 92vw, 520px); }
  .dc-arrow { width: 42px; height: 42px; }
  .dc-prev { left: 8px; }
  .dc-next { right: 8px; }
}

/* ========================================
   VÍDEOS (autoplay mp4 + extra)
   ======================================== */
.videos-section { background: var(--bg-color); }
.videos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.6rem;
  max-width: var(--maxw);
  margin: 0 auto;
}
.video-item .video-caption {
  text-align: center; margin-top: 0.9rem;
  font-size: 0.9rem; color: var(--text-muted); font-weight: 500;
}
.videos-single { max-width: 760px; margin: 2rem auto 0; }

/* ========================================
   DIA DO LANÇAMENTO — grid de fotos
   ======================================== */
.launch-section { background: var(--bg-tertiary); overflow: hidden; }
.launch-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 12px;
  max-width: var(--maxw);
  margin: 0 auto;
}
.launch-grid .launch-item {
  border-radius: 12px; overflow: hidden; aspect-ratio: 4/3;
  box-shadow: 0 8px 22px rgba(35,40,31,0.10);
  border: 1px solid var(--line);
}
.launch-grid .launch-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.launch-grid .launch-item:hover img { transform: scale(1.06); }

/* ========================================
   SOBRE A GBR
   ======================================== */
.gbr-section { background: var(--bg-secondary); }
.gbr-wrap {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3rem;
  align-items: center;
  max-width: var(--maxw);
  margin: 0 auto;
}
.gbr-image {
  border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--card-shadow); border: 1px solid var(--line);
  background: linear-gradient(150deg, var(--primary-dark), #16241a);
  display: flex; align-items: center; justify-content: center;
  padding: 2.6rem;
}
.gbr-image img { width: 100%; height: auto; max-height: 320px; object-fit: contain; display: block; }
.gbr-image.placeholder { color: rgba(242,238,230,0.75); }
.gbr-image.placeholder {
  aspect-ratio: 4/3; display: flex; align-items: center; justify-content: center;
  color: var(--text-muted); font-size: 0.85rem; text-align: center; padding: 1rem;
}
.gbr-text .eyebrow { margin-bottom: 1.2rem; }
.gbr-text h2 { font-size: clamp(1.6rem, 4vw, 2.4rem); margin-bottom: 1.2rem; color: var(--text-strong); }
.gbr-text p { color: var(--text-muted); font-size: 1.02rem; line-height: 1.8; margin-bottom: 1rem; }
.gbr-text p strong { color: var(--text-color); }
.gbr-badges { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 1.6rem; }
.gbr-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.55rem 1.1rem; background: var(--accent-soft);
  border: 1px solid rgba(176,141,87,0.25); border-radius: 100px;
  font-size: 0.82rem; font-weight: 600; color: var(--accent-dark);
}

/* ========================================
   NÚMEROS / PROVA SOCIAL
   ======================================== */
.social-proof-section {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
  color: var(--text-on-dark);
  padding: 4rem 1.5rem;
}
.proof-stats { display: flex; justify-content: center; gap: 3.5rem; flex-wrap: wrap; max-width: 900px; margin: 0 auto; }
.proof-stat { text-align: center; }
.proof-stat-number { font-family: var(--font-heading); font-size: clamp(2.2rem, 5vw, 3.2rem); font-weight: 800; color: #EBD3A3; display: block; line-height: 1; margin-bottom: 0.4rem; }
.proof-stat-label { font-size: 0.85rem; color: rgba(242,238,230,0.8); text-transform: uppercase; letter-spacing: 1px; }

/* ========================================
   CTA FINAL
   ======================================== */
.final-cta-section {
  padding: 5.5rem 1.5rem;
  background: var(--bg-color);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta-content { position: relative; z-index: 1; max-width: 680px; margin: 0 auto; }
.final-cta-content .eyebrow { margin-bottom: 1.4rem; }
.final-cta-content h2 { font-size: clamp(1.9rem, 5vw, 3rem); color: var(--text-strong); margin-bottom: 1rem; }
.final-cta-content h2 span { color: var(--accent-dark); font-style: italic; }
.final-cta-content p { font-size: 1.1rem; color: var(--text-muted); margin-bottom: 2rem; line-height: 1.75; }
.final-cta-content p strong { color: var(--text-color); }

/* ========================================
   FOOTER
   ======================================== */
.footer { background: var(--footer-bg); color: rgba(242,238,230,0.75); padding: 3.5rem 1.5rem 1.8rem; text-align: center; }
.footer-logo { font-family: var(--font-heading); font-size: 1.7rem; color: #EBD3A3; margin-bottom: 0.3rem; }
.footer-tagline { color: rgba(242,238,230,0.55); font-size: 0.88rem; margin-bottom: 1.8rem; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 1.3rem; font-size: 0.74rem; color: rgba(242,238,230,0.5); }
.footer-bottom p { margin-bottom: 0.3rem; }
.footer-policy-link { display: inline-block; margin-top: 1rem; color: #EBD3A3; font-size: 0.82rem; opacity: 0.8; transition: var(--transition); }
.footer-policy-link:hover { opacity: 1; text-decoration: underline; }

/* ========================================
   FLOATING WHATSAPP
   ======================================== */
.floating-whatsapp {
  position: fixed; bottom: 24px; right: 24px; z-index: 999;
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--whatsapp-green);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(23,167,74,0.45);
  transition: var(--transition); animation: floatBounce 3s ease-in-out infinite;
}
.floating-whatsapp:hover { transform: scale(1.1); box-shadow: 0 10px 32px rgba(23,167,74,0.6); }
.floating-whatsapp svg { width: 32px; height: 32px; fill: #fff; }
@keyframes floatBounce { 0%,100%{transform:translateY(0);} 50%{transform:translateY(-6px);} }

/* ========================================
   ANIMAÇÕES SCROLL
   ======================================== */
.animate-on-scroll { opacity: 0; transform: translateY(28px); transition: opacity 0.8s ease, transform 0.8s ease; }
.animate-on-scroll.is-visible { opacity: 1; transform: translateY(0); }
.stagger-children .animate-on-scroll:nth-child(1){transition-delay:0s;}
.stagger-children .animate-on-scroll:nth-child(2){transition-delay:.1s;}
.stagger-children .animate-on-scroll:nth-child(3){transition-delay:.2s;}
.stagger-children .animate-on-scroll:nth-child(4){transition-delay:.3s;}
.stagger-children .animate-on-scroll:nth-child(5){transition-delay:.4s;}
.stagger-children .animate-on-scroll:nth-child(6){transition-delay:.5s;}

@keyframes fadeInDown { from{opacity:0;transform:translateY(-20px);} to{opacity:1;transform:translateY(0);} }
@keyframes fadeInUp { from{opacity:0;transform:translateY(20px);} to{opacity:1;transform:translateY(0);} }

/* ========================================
   RESPONSIVO
   ======================================== */
@media (max-width: 860px) {
  .gbr-wrap { grid-template-columns: 1fr; gap: 2rem; }
  .gbr-image { max-width: 480px; margin: 0 auto; }
}

@media (max-width: 768px) {
  .section-pad { padding: 3.2rem 1.1rem; }
  .hero { padding: 2.5rem 1.1rem 3.5rem; }
  .hero-price { padding: 0.8rem 1.1rem; gap: 0.3rem 0.7rem; }
  .hero-price .price-main { font-size: 1.15rem; }
  .hero-price .price-tag { padding-left: 0; border-left: none; font-size: 0.75rem; }
  .gallery-item { width: 250px; height: 340px; }
  .gallery-track { gap: 12px; padding-left: calc(50vw - 125px); padding-right: calc(50vw - 125px); }
  .gallery-section { padding: 3.2rem 0; }
  .proof-stats { gap: 2rem; }
  .btn-whatsapp { width: 100%; padding: 1rem 1.2rem; font-size: 0.9rem; }
  .offer-head { padding: 1.8rem 1.2rem 1.6rem; }
  .offer-body { padding: 1.6rem 1.2rem 2rem; }
  .floating-whatsapp { width: 54px; height: 54px; bottom: 16px; right: 16px; }
  .floating-whatsapp svg { width: 28px; height: 28px; }
}

@media (max-width: 400px) {
  .hero-title { font-size: clamp(1.7rem, 9vw, 2.4rem); }
  .gallery-item { width: 210px; height: 290px; }
  .gallery-track { padding-left: calc(50vw - 105px); padding-right: calc(50vw - 105px); }
  .btn-whatsapp { font-size: 0.8rem; padding: 0.9rem 1rem; }
}

/* ========================================
   PÁGINA POLÍTICA DE PRIVACIDADE
   ======================================== */
.policy-page { min-height: 100vh; background: var(--bg-color); color: var(--text-color); }
.policy-header {
  padding: 3rem 1.5rem; text-align: center;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
  color: var(--text-on-dark);
}
.policy-header h1 { font-size: clamp(1.8rem, 4vw, 2.5rem); color: #EBD3A3; margin-bottom: 0.5rem; }
.policy-header p { color: rgba(242,238,230,0.8); font-size: 0.9rem; }
.policy-content { max-width: 800px; margin: 0 auto; padding: 3rem 1.5rem 4rem; }
.policy-content h2 { font-size: 1.3rem; color: var(--accent-dark); margin: 2rem 0 0.8rem; padding-bottom: 0.5rem; border-bottom: 1px solid var(--line); }
.policy-content h2:first-child { margin-top: 0; }
.policy-content p { font-size: 0.92rem; color: var(--text-muted); line-height: 1.8; margin-bottom: 1rem; }
.policy-content ul { list-style: none; padding: 0; margin-bottom: 1rem; }
.policy-content ul li { font-size: 0.92rem; color: var(--text-muted); padding: 0.4rem 0 0.4rem 1.5rem; position: relative; }
.policy-content ul li::before { content: '•'; color: var(--accent-color); position: absolute; left: 0; font-size: 1.2rem; }
.policy-content strong { color: var(--text-color); }
.policy-back {
  display: inline-flex; align-items: center; gap: 0.5rem; margin-top: 2rem;
  padding: 0.8rem 1.5rem; background: var(--card-bg); border: 1px solid var(--line);
  border-radius: 8px; color: var(--accent-dark); font-size: 0.9rem; transition: var(--transition);
}
.policy-back:hover { background: var(--bg-tertiary); transform: translateX(-3px); }
