/* ==========================================================================
   Golden Path English School
   Visual: profissional (Open English) + clareza (Lingopass) + direto
   ========================================================================== */

:root {
  --navy: #0b1f2a;
  --navy-2: #123041;
  --navy-soft: #1a3d52;
  --ink: #15202b;
  --muted: #5c6b78;
  --line: #e4e9ee;
  --paper: #f4f7f9;
  --white: #ffffff;
  --orange: #f06724;
  --orange-2: #d65516;
  --cyan: #2aa7c2;
  --whatsapp: #25d366;

  --font: "Source Sans 3", "Source Sans Pro", system-ui, sans-serif;
  --font-display: "Newsreader", "Iowan Old Style", Georgia, serif;

  --container: 1140px;
  --gutter: clamp(1.15rem, 4vw, 2.25rem);
  --header-h: 76px;
  --radius: 10px;
  --radius-lg: 14px;
  --shadow: 0 10px 28px rgba(11, 31, 42, 0.08);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 10px);
}

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

body {
  font-family: var(--font);
  font-size: 1.02rem;
  line-height: 1.6;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

.skip-link {
  position: absolute; left: 1rem; top: -100%; z-index: 10000;
  padding: 0.65rem 1rem; background: var(--navy); color: #fff; border-radius: 8px;
}
.skip-link:focus { top: 1rem; }

.wrap {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section { padding-block: clamp(3.75rem, 7vw, 6.25rem); }

.kicker {
  display: inline-block;
  margin-bottom: 0.7rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cyan);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.4vw, 2.45rem);
  font-weight: 600;
  line-height: 1.18;
  letter-spacing: -0.02em;
  color: var(--navy);
  max-width: 22ch;
}

.section-title em {
  font-style: italic;
  color: var(--cyan);
}

.lead {
  margin-top: 0.95rem;
  max-width: 58ch;
  color: var(--muted);
}

.center { text-align: center; }
.center .section-title,
.center .lead { margin-inline: auto; }
.center .kicker { display: inline-block; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 48px;
  padding: 0.8rem 1.35rem;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  transition: background 0.25s var(--ease), transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.btn--gold,
.btn--primary {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 8px 18px rgba(240, 103, 36, 0.28);
}
.btn--gold:hover,
.btn--primary:hover {
  background: var(--orange-2);
  transform: translateY(-1px);
}

.btn--ghost {
  border: 1px solid rgba(255,255,255,0.28);
  color: #fff;
}
.btn--ghost:hover { background: rgba(255,255,255,0.08); }

.btn--outline {
  border: 1px solid var(--line);
  color: var(--navy);
}
.btn--outline:hover { border-color: var(--navy); }

.btn--lg {
  min-height: 52px;
  padding-inline: 1.5rem;
  white-space: normal;
  text-align: center;
  line-height: 1.25;
}

/* Header — Lingopass: branco, CTA à direita */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid var(--line);
  padding-left: env(safe-area-inset-left);
  padding-right: env(safe-area-inset-right);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  min-height: var(--header-h);
}

.logo { display: flex; align-items: center; gap: 0.7rem; min-width: 0; }
.logo-img {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  display: block;
  object-fit: contain;
}
.logo-text { display: flex; flex-direction: column; line-height: 1.05; }
.logo-text strong {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
}
.logo-text small {
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}

.nav { display: none; align-items: center; gap: 1.1rem; flex: 1; justify-content: flex-end; }
.nav a { font-size: 0.88rem; font-weight: 500; color: var(--navy); white-space: nowrap; }
.nav a:hover, .nav a.active { color: var(--orange); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  flex-shrink: 0;
  margin-right: 0.15rem;
}

.header-cta {
  display: inline-flex;
  width: auto;
  min-height: 40px;
  padding: 0.5rem 0.85rem;
  font-size: 0.72rem;
  white-space: nowrap;
  flex-shrink: 0;
}
.cta-full { display: none; }
.cta-short { display: inline; }

.menu-toggle {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  gap: 5px;
  flex-shrink: 0;
  overflow: visible;
  position: relative;
  z-index: 110;
}
.menu-toggle span {
  display: block;
  width: 16px;
  height: 2px;
  background: var(--navy);
  transform-origin: center;
  transition: transform 0.2s var(--ease), opacity 0.2s var(--ease);
}
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 0; z-index: 90;
  background: var(--navy); color: #fff;
  padding: 5.5rem var(--gutter) 2rem;
  display: flex; flex-direction: column; gap: 1.15rem;
}
.mobile-menu[hidden] { display: none; }
.mobile-menu a { font-size: 1.35rem; font-weight: 700; }
.mobile-menu .btn { margin-top: 0.6rem; align-self: stretch; width: 100%; }

@media (min-width: 1024px) {
  .header-cta {
    min-height: 44px;
    padding: 0.65rem 1.05rem;
    font-size: 0.75rem;
  }
}

@media (min-width: 1200px) {
  .nav { display: flex; }
  .menu-toggle { display: none; }
  .header-cta {
    padding: 0.7rem 1.15rem;
    font-size: 0.78rem;
  }
  .cta-full { display: inline; }
  .cta-short { display: none; }
}

/* Hero — Open English: navy + foto + CTA laranja */
.hero {
  background: var(--navy);
  color: #fff;
  overflow: visible;
  padding: calc(var(--header-h) + 2.4rem) 0 3.2rem;
}

.hero-grid {
  display: grid;
  gap: 2.4rem;
  align-items: center;
}

.hero-kicker { color: var(--cyan); }

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5.2vw, 3.35rem);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.025em;
  max-width: 16ch;
}

.hero h1 em {
  font-style: italic;
  color: var(--cyan);
}

.hero-sub {
  margin-top: 1.1rem;
  max-width: 46ch;
  color: rgba(255,255,255,0.74);
  font-size: 1.02rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.6rem;
}

.hero-meta {
  margin-top: 1.1rem;
  font-size: 0.86rem;
  color: rgba(255,255,255,0.55);
  max-width: 46ch;
}

.hero-media {
  position: relative;
  display: grid;
  place-items: center;
  perspective: 1100px;
  min-height: 280px;
  margin: 0;
  padding: 0.6rem 0 1.8rem;
  overflow: visible;
}

.hero-seal {
  position: relative;
  width: min(78%, 320px);
  aspect-ratio: 1;
  transform-style: preserve-3d;
  animation: hero-seal-float 6.4s ease-in-out infinite;
}

.hero-seal-shadow {
  position: absolute;
  left: 12%;
  right: 4%;
  bottom: -8%;
  height: 18%;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0) 72%);
  filter: blur(8px);
  transform: rotateX(70deg) translateZ(-40px);
  pointer-events: none;
}

.hero-seal-coin {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  transform: rotateY(-18deg) rotateX(8deg);
  transform-style: preserve-3d;
  filter:
    drop-shadow(22px 28px 18px rgba(0,0,0,0.38))
    drop-shadow(4px 8px 2px rgba(0,0,0,0.22));
}

.hero-seal-coin::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  background:
    linear-gradient(145deg, #f3e2b8 0%, #c9a227 28%, #8a6a18 58%, #e8d39a 100%);
  transform: translate3d(14px, 10px, -18px);
  z-index: -1;
}

.hero-seal-coin::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background:
    linear-gradient(125deg, rgba(255,255,255,0.42) 0%, rgba(255,255,255,0.08) 28%, transparent 48%);
  pointer-events: none;
}

.hero-seal-coin img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  background: #fff;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.28),
    inset -10px -14px 22px rgba(11,31,42,0.16),
    inset 8px 10px 16px rgba(255,255,255,0.35);
}

@keyframes hero-seal-float {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(-6px, -12px, 8px); }
}

@media (min-width: 720px) {
  .hero-media { min-height: 340px; }
  .hero-seal { width: min(82%, 360px); }
}

@media (max-width: 719px) {
  .hero-media { display: none; }
}

@media (min-width: 1024px) {
  .hero { padding-block: calc(var(--header-h) + 3.2rem) 4rem; }
  .hero-grid { grid-template-columns: 1.08fr 0.92fr; gap: 1.6rem; align-items: center; }
  .hero-media {
    min-height: 440px;
    justify-self: start;
    margin-left: -1.4rem;
  }
  .hero-seal { width: min(100%, 420px); }
  .hero-seal-coin { transform: rotateY(-24deg) rotateX(9deg) rotateZ(-2deg); }
}

/* Trust bar */
.proof {
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.proof-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  padding-block: 1.5rem;
}

.proof-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--navy);
}
.proof-item span { font-size: 0.82rem; color: var(--muted); }

@media (min-width: 720px) {
  .proof-grid { grid-template-columns: repeat(4, 1fr); padding-block: 1.7rem; }
}

/* Benefits — Lingopass 4 colunas */
.benefits { background: var(--paper); }

.benefit-grid {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.benefit {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.35rem 1.25rem;
}

.benefit-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: #e8f6fa;
  color: var(--cyan);
  margin-bottom: 0.85rem;
  font-size: 1.45rem;
}

.benefit h3 { font-size: 1.02rem; font-weight: 700; margin-bottom: 0.35rem; color: var(--navy); }
.benefit p { font-size: 0.92rem; color: var(--muted); }

@media (min-width: 720px) {
  .benefit-grid { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 1100px) {
  .benefit-grid { grid-template-columns: repeat(4, 1fr); }
}

/* Problem */
.problem { background: #fff; }

.problem-grid { display: grid; gap: 2rem; }

.pain-grid { display: grid; gap: 0.85rem; }

.pain-card {
  padding: 1.2rem 1.2rem;
  background: var(--paper);
  border-radius: var(--radius);
  border: 1px solid var(--line);
}

.pain-num { font-size: 0.78rem; font-weight: 800; color: var(--orange); margin-bottom: 0.3rem; }
.pain-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.3rem; }
.pain-card p { font-size: 0.9rem; color: var(--muted); }

.transition-line {
  margin-top: 1.5rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
}

@media (min-width: 720px) {
  .pain-grid { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 1024px) {
  .problem-grid { grid-template-columns: 0.9fr 1.1fr; gap: 3.5rem; align-items: start; }
}

/* Method / steps */
.method {
  position: relative;
  overflow: hidden;
  background: var(--navy);
  color: #fff;
}
.method::before {
  content: "";
  position: absolute;
  right: -16%;
  top: 54%;
  z-index: 0;
  width: min(90vw, 720px);
  height: min(90vw, 720px);
  transform: translateY(-50%);
  background: url("images/logo.png") center / contain no-repeat;
  opacity: 0.16;
  pointer-events: none;
}
@media (max-width: 719px) {
  .method::before { display: none; }
}
.method .wrap { position: relative; z-index: 1; }
.method .section-title { color: #fff; }
.method .lead { color: rgba(255,255,255,0.72); }
.method .kicker { color: var(--cyan); }

.pillars { display: grid; gap: 0.9rem; margin-top: 2.2rem; }

.pillar {
  padding: 1.35rem 1.25rem;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.03);
}

.pillar-index { font-size: 0.75rem; font-weight: 800; letter-spacing: 0.08em; color: var(--orange); margin-bottom: 0.5rem; }
.pillar h3 { font-family: var(--font-display); font-size: 1.16rem; font-weight: 600; margin-bottom: 0.4rem; }
.pillar p { color: rgba(255,255,255,0.68); font-size: 0.92rem; }

@media (min-width: 720px) {
  .pillars { grid-template-columns: 1fr 1fr; }
}

/* About */
.about {
  background: #fff;
}

.about-grid {
  display: grid;
  gap: 1.5rem;
}

.about-intro .section-title { max-width: 16ch; }

.about-media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 300px;
  max-height: 420px;
  background: var(--navy);
}

.about-media img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  max-height: 420px;
  object-fit: cover;
  object-position: 50% 18%;
}

.about-media::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 34%;
  background: linear-gradient(0deg, rgba(11, 31, 42, 0.42), transparent);
  z-index: 1;
  pointer-events: none;
}

.about-chip {
  position: absolute;
  left: 0.85rem;
  bottom: 0.85rem;
  z-index: 2;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0.55rem;
  max-width: calc(100% - 1.7rem);
  padding: 0.4rem 0.75rem 0.4rem 0.4rem;
  background: #fff;
  border-radius: 999px;
  box-shadow: var(--shadow);
}

.about-chip img {
  width: 36px;
  height: 36px;
  min-height: 0;
  max-height: none;
  border-radius: 50%;
  object-fit: cover;
  object-position: 50% 20%;
  flex-shrink: 0;
}

.about-chip p { min-width: 0; }
.about-chip strong { display: block; font-size: 0.8rem; line-height: 1.2; }
.about-chip span {
  display: block;
  font-size: 0.64rem;
  color: var(--muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (max-width: 719px) {
  .about-chip {
    padding: 0.35rem 0.65rem 0.35rem 0.35rem;
    gap: 0.45rem;
  }
  .about-chip img { width: 32px; height: 32px; }
  .about-chip strong { font-size: 0.74rem; }
  .about-chip span { font-size: 0.6rem; }
}
.about-copy .lead { max-width: 58ch; }
.about-copy .lead + .lead { margin-top: 0.75rem; }

.stats { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; margin-top: 1.5rem; }
.stat {
  padding: 1rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--cyan);
}
.stat span { font-size: 0.8rem; color: var(--muted); }

@media (min-width: 720px) {
  .about-media,
  .about-media img {
    min-height: 400px;
    max-height: 480px;
  }
}

@media (min-width: 1024px) {
  .about-grid {
    grid-template-columns: minmax(240px, 0.78fr) minmax(0, 1.22fr);
    grid-template-areas:
      "media intro"
      "media copy";
    gap: 1.1rem 2.75rem;
    align-items: start;
  }
  .about-intro { grid-area: intro; }
  .about-media { grid-area: media; align-self: stretch; }
  .about-copy { grid-area: copy; }
  .about-media,
  .about-media img {
    min-height: 100%;
    max-height: none;
    height: 100%;
  }
}

/* Audience */
.audience { background: #fff; }
.who-grid { display: grid; gap: 0.9rem; margin-top: 2rem; }
.who-card {
  padding: 1.4rem 1.25rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}
.who-icon {
  display: block;
  font-size: 1.55rem;
  color: var(--cyan);
  margin-bottom: 0.7rem;
  line-height: 1;
}
.who-card h3 { font-size: 1.08rem; font-weight: 700; margin-bottom: 0.4rem; color: var(--navy); }
.who-card p { color: var(--muted); font-size: 0.92rem; }

@media (min-width: 720px) {
  .who-grid { grid-template-columns: 1fr 1fr; }
}

/* Plans */
.plans { background: var(--paper); }
.plan-grid { display: grid; gap: 0.9rem; margin-top: 2rem; }
.plan {
  position: relative;
  padding: 1.6rem 1.35rem 1.35rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
}
.plan--featured { background: var(--navy); color: #fff; border-color: var(--navy); }
.plan-badge {
  position: absolute; top: 1rem; right: 1rem;
  padding: 0.25rem 0.6rem; border-radius: 6px;
  background: var(--orange); color: #fff;
  font-size: 0.65rem; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase;
}
.plan h3 { font-family: var(--font-display); font-size: 1.4rem; font-weight: 600; margin-bottom: 0.45rem; }
.plan p { color: var(--muted); flex: 1; }
.plan--featured p { color: rgba(255,255,255,0.7); }
.plan-note { margin: 1.1rem 0 1rem; font-size: 0.9rem; font-weight: 700; color: var(--navy); }
.plan--featured .plan-note { color: #fff; }
.plan .btn { width: 100%; }

@media (min-width: 1100px) {
  .plan-grid { grid-template-columns: repeat(3, 1fr); }
  .plan--featured { transform: translateY(-8px); }
}

/* Travel */
.travel { background: var(--navy-2); color: #fff; }
.travel .kicker { color: var(--cyan); }
.travel .section-title { color: #fff; }
.travel .lead { color: rgba(255,255,255,0.72); }
.travel-sub { font-weight: 800; color: var(--orange); margin-bottom: 0.35rem; }

.situations { display: flex; flex-wrap: wrap; gap: 0.45rem; margin: 1.4rem 0 1.6rem; }
.situations li {
  padding: 0.45rem 0.8rem;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 8px;
  font-size: 0.84rem;
}

/* Social / videos */
.social { background: #fff; }
.google-score {
  display: flex; align-items: center; gap: 1rem;
  margin-top: 1.3rem; padding: 1rem 1.15rem;
  background: var(--paper); border-radius: var(--radius);
}
.google-score strong { font-family: var(--font-display); font-size: 2.1rem; font-weight: 600; color: var(--navy); }
.stars { color: var(--orange); display: flex; gap: 0.12rem; font-size: 1.05rem; }

.testimonial-videos {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(220px, 260px);
  gap: 0.9rem;
  overflow-x: auto;
  margin-top: 1.8rem;
  padding-bottom: 0.4rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
}
.testimonial-video {
  margin: 0;
  scroll-snap-align: start;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--navy);
}
.testimonial-video video {
  display: block;
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: contain;
  background: #000;
  vertical-align: top;
}
.testimonial-video figcaption {
  margin-top: 0.65rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
}

@media (min-width: 1024px) {
  .testimonial-videos {
    grid-auto-flow: unset;
    grid-template-columns: repeat(4, 1fr);
    overflow: visible;
    grid-auto-columns: unset;
  }
}

.videos { background: var(--paper); }
.video-grid {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(220px, 260px);
  gap: 0.9rem;
  overflow-x: auto;
  margin-top: 1.8rem;
  padding-bottom: 0.4rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
}
.video-card {
  position: relative; display: block; aspect-ratio: 9/16;
  border-radius: var(--radius); overflow: hidden; scroll-snap-align: start; background: var(--navy);
}
.video-card img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }
.video-card::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(11,31,42,0.75));
}
.play {
  position: absolute; inset: 50% auto auto 50%; z-index: 2;
  width: 52px; height: 52px; margin: -26px 0 0 -26px; border-radius: 50%;
  background: var(--orange); color: #fff; display: grid; place-items: center;
  font-size: 1.2rem;
}
.play i { margin-left: 2px; }
.video-card span:last-child {
  position: absolute; left: 0.9rem; right: 0.9rem; bottom: 0.9rem; z-index: 2;
  font-size: 0.82rem; font-weight: 600; color: #fff;
}

@media (min-width: 1024px) {
  .video-grid {
    grid-auto-flow: unset;
    grid-template-columns: repeat(3, 1fr);
    overflow: visible;
    grid-auto-columns: unset;
  }
}

/* FAQ */
.faq { background: var(--paper); }
.faq-list {
  margin-top: 1.8rem;
  margin-inline: auto;
  border-top: 1px solid var(--line);
  max-width: 760px;
  text-align: left;
}
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary {
  list-style: none; display: flex; justify-content: space-between; gap: 1rem;
  padding: 1.1rem 0; cursor: pointer;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item h3 { margin: 0; font-size: 1rem; font-weight: 700; display: inline; }
.faq-item summary::after { content: "+"; color: var(--orange); font-size: 1.3rem; }
.faq-item[open] summary::after { content: "–"; }
.faq-item p { padding: 0 0 1.1rem; color: var(--muted); }

/* Final */
.final {
  background: var(--navy);
  color: #fff;
  text-align: center;
  padding-bottom: clamp(5.5rem, 12vw, 7rem);
}

.final-inner {
  max-width: 42rem;
  margin-inline: auto;
}

.final .kicker {
  display: block;
  color: var(--cyan);
}

.final .section-title {
  color: #fff;
  max-width: 16em;
  margin-inline: auto;
  font-size: clamp(1.55rem, 4.2vw, 2.45rem);
}

.final .lead {
  color: rgba(255,255,255,0.7);
  margin-inline: auto;
}

.final .btn {
  margin-top: 1.6rem;
  max-width: 100%;
  width: 100%;
  padding-inline: 1.1rem;
}

.hours {
  margin-top: 1.3rem;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
}

.social-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem;
  margin-top: 1.15rem;
}

.social-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.18);
  color: #fff;
  font-size: 1.25rem;
  transition: background 0.25s var(--ease), transform 0.25s var(--ease), border-color 0.25s var(--ease);
}

.social-btn:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
  transform: translateY(-1px);
}

.social-btn--wa:hover { background: var(--whatsapp); }

.social-row--footer {
  justify-content: flex-start;
  margin-top: 1rem;
}

@media (min-width: 720px) {
  .final .btn {
    width: auto;
    min-width: min(100%, 22rem);
    padding-inline: 1.6rem;
  }
}

/* Footer */
.footer {
  background: #08151c;
  color: rgba(255,255,255,0.7);
  padding: 3rem 0 calc(4.75rem + env(safe-area-inset-bottom));
  font-size: 0.9rem;
}
.footer-grid { display: grid; gap: 1.8rem; }
.footer .logo-text strong { color: #fff; }
.footer .logo-img { width: 52px; height: 52px; }
.footer h3 {
  color: #fff; font-size: 0.72rem; letter-spacing: 0.12em;
  text-transform: uppercase; margin-bottom: 0.8rem;
}
.footer-nav a:hover,
.footer-credit a:hover { color: var(--orange); }
.footer-nav, .footer address, .footer-hours { display: grid; gap: 0.4rem; font-style: normal; }
.footer-bottom {
  margin-top: 2rem; padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 0.6rem;
  font-size: 0.78rem; color: rgba(255,255,255,0.4);
}
.footer-credit a {
  color: rgba(255,255,255,0.62);
  text-decoration: underline;
  text-underline-offset: 0.18em;
}
.footer-credit a:hover { color: var(--orange); }

@media (min-width: 720px) {
  .logo-img { width: 48px; height: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 1100px) {
  .footer-grid { grid-template-columns: 1.3fr 0.8fr 1fr 1fr; }
}

.wa-float {
  position: fixed;
  right: max(0.85rem, env(safe-area-inset-right));
  bottom: max(0.85rem, env(safe-area-inset-bottom));
  z-index: 120;
  width: 52px;
  height: 52px;
  min-width: 52px;
  min-height: 52px;
  aspect-ratio: 1;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--whatsapp);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 1.65rem;
  box-shadow: 0 10px 24px rgba(18, 140, 62, 0.35);
}

@media (min-width: 720px) {
  .wa-float {
    width: 56px;
    height: 56px;
    min-width: 56px;
    min-height: 56px;
    right: max(1rem, env(safe-area-inset-right));
    bottom: max(1rem, env(safe-area-inset-bottom));
  }
}

.reveal { transform: translateY(12px); transition: transform 0.55s var(--ease); }
.reveal.visible { transform: none; }
.reveal-delay-1 { transition-delay: 0.07s; }
.reveal-delay-2 { transition-delay: 0.14s; }
.reveal-delay-3 { transition-delay: 0.21s; }

@media (max-width: 599px) {
  .btn { width: 100%; }
  .header-cta { width: auto; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .header-inner { gap: 0.4rem; }
  .header-cta { padding-inline: 0.7rem; }
  .logo-text strong { font-size: 0.9rem; }
}
