/* ============================================
   Girola Cortinas e Persianas — Landing Page
   ============================================ */

:root {
  /* Brand — verde + dourado */
  --green: #4a6b5c;
  --green-light: #6b8e7d;
  --green-soft: #8ba89e;
  --green-deep: #3a5446;
  --green-darker: #2c3f35;
  --green-darkest: #243329;

  --gold: #c9a961;
  --gold-bright: #d8bd7e;
  --gold-deep: #a8863f;
  --gold-hover: #b89550;

  /* Beges / neutros */
  --cream: #f8f7f4;
  --beige: #e8d5b7;
  --beige-light: #e5dfd3;
  --taupe: #d1c4b0;

  --ink: #1a1a19;
  --charcoal: #34322d;
  --gray-700: #4a4843;
  --gray-500: #858481;
  --gray-300: #cfcbc2;
  --gray-200: #e6e2da;
  --gray-100: #f0ede7;
  --white: #ffffff;

  /* WhatsApp */
  --wa-green: #25D366;
  --wa-green-hover: #1FB955;

  /* Fonts */
  --font-title: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;

  /* Layout */
  --max-w: 1200px;
  --radius: 10px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

/* ============================================ LAYOUT BASE ============================================ */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}
@media (min-width: 768px) { .container { padding: 0 48px; } }

section { padding: 64px 0; position: relative; }
@media (min-width: 768px) { section { padding: 112px 0; } }

section.dark {
  background:
    radial-gradient(ellipse at top right, rgba(201, 169, 97, 0.12), transparent 55%),
    var(--green-deep);
  color: var(--white);
}
section.bg-soft { background: var(--cream); }

section:not(.bg-soft):not(.dark) + section:not(.bg-soft):not(.dark),
section.bg-soft + section.bg-soft,
section.dark + section.dark { padding-top: 24px; }
@media (min-width: 768px) {
  section:not(.bg-soft):not(.dark) + section:not(.bg-soft):not(.dark),
  section.bg-soft + section.bg-soft,
  section.dark + section.dark { padding-top: 48px; }
}

/* ============================================ WHATSAPP ICON ============================================ */
.wa-icon {
  display: inline-block;
  width: 18px;
  height: 18px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32' fill='white'><path d='M16.001 3C9.373 3 4 8.373 4 15c0 2.32.667 4.487 1.812 6.32L4 28l6.943-1.776A11.95 11.95 0 0 0 16 27c6.627 0 12-5.373 12-12S22.628 3 16.001 3zm0 21.667a9.65 9.65 0 0 1-4.93-1.346l-.353-.21-4.124 1.057 1.1-4.012-.23-.367A9.66 9.66 0 0 1 6.333 15c0-5.335 4.333-9.667 9.667-9.667S25.667 9.665 25.667 15s-4.333 9.667-9.666 9.667zm5.535-7.197c-.305-.152-1.803-.892-2.082-.992-.279-.103-.482-.152-.685.152s-.787.992-.965 1.195c-.178.203-.357.227-.661.075-.305-.152-1.286-.474-2.45-1.51-.905-.808-1.516-1.804-1.693-2.108-.178-.305-.019-.469.134-.62.137-.137.305-.357.457-.535.152-.178.203-.305.305-.508.102-.203.05-.381-.025-.533-.075-.152-.685-1.65-.938-2.262-.247-.594-.499-.514-.685-.523l-.583-.011a1.124 1.124 0 0 0-.812.381c-.279.305-1.066 1.042-1.066 2.54s1.092 2.946 1.245 3.149c.152.203 2.151 3.282 5.213 4.602.729.314 1.298.501 1.741.642.731.232 1.397.199 1.923.121.587-.088 1.803-.738 2.058-1.451.255-.713.255-1.323.178-1.451-.075-.127-.279-.203-.583-.355z'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

/* ============================================ BUTTONS ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.005em;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
  border: none;
  white-space: nowrap;
}

.btn-gold {
  background: var(--gold);
  color: var(--green-darkest);
  box-shadow: 0 4px 18px rgba(201, 169, 97, 0.3);
}
.btn-gold:hover {
  background: var(--gold-bright);
  transform: translateY(-2px);
  box-shadow: 0 8px 26px rgba(201, 169, 97, 0.42);
}

.btn-wa {
  background: var(--wa-green);
  color: var(--white);
  box-shadow: 0 4px 18px rgba(37, 211, 102, 0.3);
}
.btn-wa:hover {
  background: var(--wa-green-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 26px rgba(37, 211, 102, 0.42);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.35);
}
.btn-ghost:hover { border-color: var(--gold-bright); color: var(--gold-bright); background: rgba(255, 255, 255, 0.04); }

.btn-lg { padding: 18px 36px; font-size: 17px; }
.btn-xl { padding: 22px 44px; font-size: 18px; }

/* ============================================ ATOMS ============================================ */
.accent { color: var(--gold-deep); font-style: italic; }
section.dark .accent { color: var(--gold-bright); }

.gold-bar {
  display: block;
  width: 56px;
  height: 3px;
  background: var(--gold);
  margin: 16px 0 24px;
  border-radius: 2px;
}
.gold-bar.centered { margin-left: auto; margin-right: auto; }

.eyebrow-block { margin-bottom: 32px; }
@media (min-width: 768px) { .eyebrow-block { margin-bottom: 48px; } }
.eyebrow-block.centered { text-align: center; }
.eyebrow-block.centered .section-title,
.eyebrow-block.centered .section-sub { margin-left: auto; margin-right: auto; }

.section-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-deep);
}
.section-tag.on-dark { color: var(--gold-bright); }

.section-title {
  font-family: var(--font-title);
  font-size: 32px;
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
  max-width: 820px;
  color: var(--ink);
}
section.dark .section-title { color: var(--white); }
@media (min-width: 500px) { .section-title { font-size: 38px; } }
@media (min-width: 768px) { .section-title { font-size: 46px; } }
@media (min-width: 1200px) { .section-title { font-size: 54px; } }

.section-sub {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--gray-700);
  max-width: 680px;
}
@media (min-width: 768px) { .section-sub { font-size: 18px; } }
section.dark .section-sub, .section-sub.on-dark { color: var(--beige-light); }

.section-cta { text-align: center; margin-top: 48px; }
.section-cta-note { margin-top: 14px; font-size: 13px; color: var(--gray-500); }
section.dark .section-cta-note { color: var(--beige-light); }

/* ============================================ HERO ============================================ */
#hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  padding: 48px 0 64px;
  background-image: url("hero.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media (min-width: 768px) { #hero { padding: 64px 0 96px; min-height: 70vh; display: flex; align-items: center; } }

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg, rgba(36, 51, 41, 0.92) 0%, rgba(44, 63, 53, 0.82) 42%, rgba(44, 63, 53, 0.40) 100%),
    radial-gradient(ellipse at bottom right, rgba(201, 169, 97, 0.22), transparent 55%);
  z-index: 1;
}
@media (max-width: 767px) {
  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(36, 51, 41, 0.86) 0%, rgba(44, 63, 53, 0.92) 100%);
  }
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
@media (prefers-reduced-motion: reduce) { .hero-video { display: none; } }
.hero-video.is-hidden { display: none; }

.hero-inner { position: relative; z-index: 2; width: 100%; }

.hero-text { max-width: 680px; }

.hero-brand {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 26px;
}

.hero-logo {
  width: 88px;
  height: auto;
  border-radius: 12px;
  flex-shrink: 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(201, 169, 97, 0.3);
}
@media (min-width: 768px) { .hero-logo { width: 108px; border-radius: 14px; } }

.hero-brand-text {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  line-height: 1.5;
  color: var(--gold-bright);
}
@media (min-width: 768px) { .hero-brand-text { font-size: 13px; } }

.hero-title {
  font-family: var(--font-title);
  font-size: 38px;
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.015em;
  color: var(--white);
  margin: 0 0 24px;
}
@media (min-width: 500px) { .hero-title { font-size: 46px; } }
@media (min-width: 768px) { .hero-title { font-size: 56px; } }
@media (min-width: 1200px) { .hero-title { font-size: 64px; } }

.hero-sub {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--beige-light);
  margin-bottom: 32px;
  max-width: 560px;
}
.hero-sub strong { color: var(--white); }
@media (min-width: 768px) { .hero-sub { font-size: 18px; margin-bottom: 40px; } }

.hero-cta-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 36px;
}
@media (min-width: 500px) { .hero-cta-group { flex-direction: row; align-items: center; gap: 16px; flex-wrap: wrap; } }

.hero-trust { list-style: none; display: flex; flex-direction: column; gap: 10px; padding: 0; }
.hero-trust li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--beige-light);
}
.hero-trust-check {
  display: inline-block;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 1px;
  border-radius: 50%;
  background: var(--gold);
  position: relative;
}
.hero-trust-check::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232c3f35' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 11px;
}

/* ============================================ MODELOS — SHOWCASE ============================================ */
.modelos-showcase { position: relative; }

/* Todos os painéis empilhados na mesma célula → altura constante (= maior painel) */
.showcase-stage { display: grid; }

.showcase-panel {
  grid-area: 1 / 1;
  display: grid;
  grid-template-columns: 1fr;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
@media (min-width: 860px) { .showcase-panel { grid-template-columns: 1.05fr 1fr; } }

.showcase-panel.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  z-index: 1;
}

.modelo-slide {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 18px;
  overflow: hidden;
}

.modelo-slide-photo { position: relative; background: var(--green-darker); overflow: hidden; aspect-ratio: 4 / 3; }
@media (min-width: 860px) { .modelo-slide-photo { aspect-ratio: auto; min-height: 460px; } }
.modelo-slide-photo img { width: 100%; height: 100%; object-fit: cover; }

.modelo-slide-info {
  padding: 32px 28px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (min-width: 768px) { .modelo-slide-info { padding: 44px 44px 48px; } }

.modelo-slide-count {
  font-family: var(--font-body); font-size: 12px; font-weight: 700;
  letter-spacing: 0.16em; color: var(--gold-deep); margin-bottom: 12px;
}
.modelo-slide-name {
  font-family: var(--font-title); font-size: 28px; font-weight: 700;
  color: var(--green); line-height: 1.1; margin-bottom: 14px; letter-spacing: -0.01em;
}
@media (min-width: 768px) { .modelo-slide-name { font-size: 36px; } }

.modelo-slide-desc { font-size: 15px; line-height: 1.65; color: var(--gray-700); margin-bottom: 22px; }
@media (min-width: 768px) { .modelo-slide-desc { font-size: 16px; } }

.modelo-slide-features { list-style: none; padding: 0; margin: 0 0 28px; display: flex; flex-direction: column; gap: 12px; }
.modelo-slide-features li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 15px; line-height: 1.4; color: var(--charcoal);
}
.feat-check {
  display: inline-block; width: 20px; height: 20px; flex-shrink: 0; margin-top: 1px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23a8863f' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
  background-repeat: no-repeat; background-position: center; background-size: 18px;
}
.modelo-slide-info .btn { align-self: flex-start; }

/* Miniaturas — todos os modelos visíveis */
.showcase-thumbs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 18px;
}
@media (min-width: 600px) { .showcase-thumbs { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 960px) { .showcase-thumbs { grid-template-columns: repeat(8, 1fr); gap: 12px; } }

/* Mobile: miniaturas viram uma faixa horizontal deslizável */
@media (max-width: 599px) {
  .showcase-thumbs {
    display: flex;
    grid-template-columns: none;
    gap: 10px;
    overflow-x: auto;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    margin: 16px -24px 0;
    padding: 4px 24px 6px;
  }
  .showcase-thumbs::-webkit-scrollbar { display: none; }
  .showcase-thumb {
    flex: 0 0 30%;
    min-width: 112px;
    scroll-snap-align: start;
  }
}

.showcase-thumb {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 8px 6px 10px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  cursor: pointer;
  transition: border-color 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.showcase-thumb:hover { transform: translateY(-3px); box-shadow: 0 10px 22px rgba(58, 84, 70, 0.14); border-color: var(--gold); }
.showcase-thumb.active {
  border-color: var(--gold);
  border-width: 2px;
  background: var(--cream);
  box-shadow: 0 10px 26px rgba(201, 169, 97, 0.22);
}

.showcase-thumb-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 8px;
  overflow: hidden;
  background: var(--green-darker);
}
.showcase-thumb-img img { width: 100%; height: 100%; object-fit: cover; }

.showcase-thumb-name {
  font-size: 12px;
  font-weight: 600;
  line-height: 1.25;
  text-align: center;
  color: var(--charcoal);
}
.showcase-thumb.active .showcase-thumb-name { color: var(--green); font-weight: 700; }

/* ============================================ MOTIVOS ============================================ */
.motivos-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
@media (min-width: 640px) { .motivos-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .motivos-grid { grid-template-columns: repeat(4, 1fr); gap: 24px; } }

.motivo-card {
  background: var(--cream);
  border: 1px solid var(--gray-200);
  border-radius: 14px;
  padding: 32px 26px;
  border-top: 3px solid var(--gold);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.motivo-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(58, 84, 70, 0.12);
}
.motivo-icon {
  width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(201, 169, 97, 0.12);
  border: 1px solid rgba(201, 169, 97, 0.35);
  border-radius: 14px;
  color: var(--gold-deep);
  margin-bottom: 20px;
}
.motivo-icon svg { width: 28px; height: 28px; }
.motivo-num {
  font-family: var(--font-title); font-size: 34px; font-weight: 700;
  color: var(--gold-deep); line-height: 1; margin-bottom: 16px;
}
.motivo-title {
  font-family: var(--font-title); font-size: 20px; font-weight: 700; color: var(--ink);
  margin-bottom: 12px; letter-spacing: -0.01em; line-height: 1.25;
}
.motivo-text { font-size: 14px; line-height: 1.6; color: var(--gray-700); }

/* ============================================ SOBRE ============================================ */
.sobre-grid { display: grid; grid-template-columns: 1fr; gap: 40px; align-items: center; }
@media (min-width: 1024px) { .sobre-grid { grid-template-columns: 1.1fr 0.9fr; gap: 64px; } }

.sobre-eyebrow {
  display: inline-flex; align-items: center; gap: 10px; margin-bottom: 22px;
}
.sobre-eyebrow svg { width: 22px; height: 22px; color: var(--gold-bright); }

.sobre-bio {
  font-size: 16px; line-height: 1.75; color: var(--beige-light);
  margin-bottom: 20px; max-width: 580px;
}
@media (min-width: 768px) { .sobre-bio { font-size: 17px; } }

.sobre-stats {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 32px;
  margin-top: 36px;
  justify-content: start;
}
@media (max-width: 420px) { .sobre-stats { gap: 22px; } }
.stat-item { text-align: left; }
.stat-num {
  font-family: var(--font-title); font-size: 40px; font-weight: 700; line-height: 1;
  color: var(--gold-bright); margin-bottom: 8px;
}
.stat-num span { font-size: 28px; }
.stat-label {
  font-size: 13px; font-weight: 500; line-height: 1.3;
  color: var(--beige-light);
}

.sobre-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 20px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  backdrop-filter: blur(8px);
}
.sobre-feature { display: flex; align-items: flex-start; gap: 16px; }
.sobre-feature-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-bright);
}
.sobre-feature-icon svg { width: 26px; height: 26px; }
.sobre-feature-text h3 {
  font-family: var(--font-body); font-size: 17px; font-weight: 700;
  color: var(--white); margin-bottom: 6px; letter-spacing: -0.01em;
}
.sobre-feature-text p { font-size: 14px; line-height: 1.55; color: var(--beige-light); }

/* ============================================ COMO FUNCIONA ============================================ */
.passos-grid { display: grid; grid-template-columns: 1fr; gap: 18px; }
@media (min-width: 640px) { .passos-grid { grid-template-columns: 1fr 1fr; gap: 22px; } }
@media (min-width: 1024px) { .passos-grid { grid-template-columns: repeat(4, 1fr); gap: 24px; } }

.passo-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 14px;
  padding: 30px 26px;
}
.passo-num {
  font-family: var(--font-title); font-size: 40px; font-weight: 700; color: var(--green-soft);
  line-height: 1; margin-bottom: 16px;
}
.passo-name {
  font-family: var(--font-title); font-size: 19px; font-weight: 700; color: var(--ink);
  margin-bottom: 10px; letter-spacing: -0.01em;
}
.passo-desc { font-size: 14px; line-height: 1.6; color: var(--gray-700); }

/* ============================================ DEPOIMENTOS ============================================ */
.depo-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
@media (min-width: 768px) { .depo-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; } }

.depo-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 14px;
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.depo-card:hover { transform: translateY(-3px); box-shadow: 0 14px 30px rgba(58, 84, 70, 0.12); }
.depo-stars { color: var(--gold); font-size: 18px; letter-spacing: 2px; }
.depo-quote { font-size: 15px; line-height: 1.65; color: var(--charcoal); font-style: italic; flex: 1; }
.depo-author { padding-top: 16px; border-top: 1px solid var(--gray-200); }
.depo-name { font-size: 14px; font-weight: 700; color: var(--ink); }
.depo-role { font-size: 12px; color: var(--gray-500); margin-top: 2px; }

.depo-card-cta {
  background: var(--green-deep);
  color: var(--white);
  border: 2px solid var(--gold);
  align-items: center;
  justify-content: center;
  text-align: center;
}
.depo-card-cta .depo-cta-stars { color: var(--gold); font-size: 20px; letter-spacing: 2px; margin-bottom: 14px; }
.depo-cta-title { font-family: var(--font-title); font-size: 22px; font-weight: 700; margin-bottom: 10px; color: var(--white); }
.depo-cta-text { font-size: 14px; line-height: 1.55; color: var(--beige-light); margin-bottom: 20px; max-width: 260px; }
.depo-cta-link {
  display: inline-block; font-weight: 700; font-size: 14px; color: var(--green-darkest);
  background: var(--gold); padding: 12px 24px; border-radius: 6px; transition: background 0.2s ease, transform 0.15s ease;
}
.depo-card-cta:hover .depo-cta-link { background: var(--gold-bright); transform: translateY(-2px); }

/* ============================================ FAQ ============================================ */
.faq-list { display: flex; flex-direction: column; gap: 12px; max-width: 880px; margin: 0 auto; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.faq-item.open { border-color: var(--gold); box-shadow: 0 8px 24px rgba(201, 169, 97, 0.12); }
.faq-question {
  width: 100%; text-align: left;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  padding: 22px 24px;
  font-family: var(--font-body); font-size: 15px; font-weight: 600; color: var(--ink); cursor: pointer;
}
@media (min-width: 768px) { .faq-question { font-size: 17px; padding: 26px 28px; } }
.faq-num { display: inline-block; font-size: 13px; font-weight: 700; color: var(--gold-deep); margin-right: 10px; letter-spacing: 0.04em; }
.faq-toggle { font-size: 26px; font-weight: 400; color: var(--gold-deep); flex-shrink: 0; transition: transform 0.25s ease; line-height: 1; }
.faq-item.open .faq-toggle { transform: rotate(45deg); }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 24px;
  font-size: 15px; line-height: 1.7; color: var(--gray-700);
}
@media (min-width: 768px) { .faq-answer { padding: 0 28px; font-size: 16px; } }
.faq-item.open .faq-answer { max-height: 520px; padding-bottom: 26px; }

/* ============================================ CTA FINAL ============================================ */
.cta-final-box {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}
.cta-final-box .section-title, .cta-final-box .section-tag { margin-left: auto; margin-right: auto; }
.cta-final-sub {
  font-size: 16px; line-height: 1.7; color: var(--beige-light);
  margin: 0 auto 36px; max-width: 580px;
}
@media (min-width: 768px) { .cta-final-sub { font-size: 18px; } }

.cta-final-info {
  display: grid; grid-template-columns: 1fr; gap: 18px;
  margin-top: 48px; padding-top: 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  text-align: left;
}
@media (min-width: 640px) { .cta-final-info { grid-template-columns: repeat(3, 1fr); } }
.cta-final-info-item { padding-left: 14px; border-left: 2px solid var(--gold); }
.cta-final-info-label {
  font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold-bright); margin-bottom: 4px;
}
.cta-final-info-value { font-size: 14px; line-height: 1.5; color: var(--white); }

/* ============================================ FOOTER ============================================ */
footer {
  background: var(--green-darkest);
  color: var(--beige-light);
  padding: 28px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-bar {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  text-align: center;
}
@media (min-width: 768px) { .footer-bar { flex-direction: row; justify-content: space-between; text-align: left; } }
.footer-copy { font-size: 13px; color: var(--green-soft); }
.footer-credit { font-size: 13px; color: var(--green-soft); }
.footer-credit a { color: var(--gold-bright); font-weight: 600; transition: color 0.2s ease; }
.footer-credit a:hover { color: var(--gold); }

/* ============================================ FLOAT WHATSAPP ============================================ */
.float-wa {
  position: fixed; bottom: 24px; right: 24px; z-index: 100;
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--wa-green); color: var(--white);
  padding: 14px 22px; border-radius: 999px;
  font-weight: 700; font-size: 14px;
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.4);
  transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
}
.float-wa:hover { background: var(--wa-green-hover); transform: translateY(-2px); box-shadow: 0 16px 36px rgba(37, 211, 102, 0.5); }
.float-wa-icon {
  display: inline-block; width: 20px; height: 20px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32' fill='white'><path d='M16.001 3C9.373 3 4 8.373 4 15c0 2.32.667 4.487 1.812 6.32L4 28l6.943-1.776A11.95 11.95 0 0 0 16 27c6.627 0 12-5.373 12-12S22.628 3 16.001 3zm0 21.667a9.65 9.65 0 0 1-4.93-1.346l-.353-.21-4.124 1.057 1.1-4.012-.23-.367A9.66 9.66 0 0 1 6.333 15c0-5.335 4.333-9.667 9.667-9.667S25.667 9.665 25.667 15s-4.333 9.667-9.666 9.667zm5.535-7.197c-.305-.152-1.803-.892-2.082-.992-.279-.103-.482-.152-.685.152s-.787.992-.965 1.195c-.178.203-.357.227-.661.075-.305-.152-1.286-.474-2.45-1.51-.905-.808-1.516-1.804-1.693-2.108-.178-.305-.019-.469.134-.62.137-.137.305-.357.457-.535.152-.178.203-.305.305-.508.102-.203.05-.381-.025-.533-.075-.152-.685-1.65-.938-2.262-.247-.594-.499-.514-.685-.523l-.583-.011a1.124 1.124 0 0 0-.812.381c-.279.305-1.066 1.042-1.066 2.54s1.092 2.946 1.245 3.149c.152.203 2.151 3.282 5.213 4.602.729.314 1.298.501 1.741.642.731.232 1.397.199 1.923.121.587-.088 1.803-.738 2.058-1.451.255-.713.255-1.323.178-1.451-.075-.127-.279-.203-.583-.355z'/></svg>");
  background-repeat: no-repeat; background-position: center; background-size: contain;
}
@media (max-width: 499px) {
  .float-wa-label { display: none; }
  .float-wa { padding: 14px; width: 56px; height: 56px; justify-content: center; }
}

/* ============================================ REVEAL ============================================ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal[data-stagger="1"] { transition-delay: 0.08s; }
.reveal[data-stagger="2"] { transition-delay: 0.16s; }
.reveal[data-stagger="3"] { transition-delay: 0.24s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}
