/* ============================================================
   APOLLO — Sistema de Crescimento Previsível
   Recriação editável (HTML/CSS/JS) do site original
   Marca: Dourado #FFC700 · Preto #0D0D0D · Space Grotesk + Inter
   ============================================================ */

:root {
  /* Tokens da marca (HSL) */
  --background: 0 0% 100%;
  --foreground: 0 0% 5%;
  --secondary: 0 0% 96%;
  --muted-foreground: 0 0% 40%;
  --border: 0 0% 90%;

  --primary: 48 100% 50%;          /* Dourado Apollo #FFC700 */
  --primary-foreground: 0 0% 5%;

  --surface-dark: 0 0% 5%;         /* #0D0D0D */
  --surface-dark-fg: 0 0% 98%;
  --surface-elevated: 0 0% 8%;     /* #141414 */
  --gold: 48 100% 50%;
  --gold-soft: 42 100% 65%;

  --radius: 0.5rem;

  --font-display: "Space Grotesk", sans-serif;
  --font-body: "Inter", sans-serif;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  background: hsl(var(--background));
  color: hsl(var(--foreground));
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 { font-family: var(--font-display); }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { display: block; max-width: 100%; height: auto; }

/* ---------- Helpers ---------- */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.section-padding { padding: 5rem 1rem; }
@media (min-width: 768px) { .section-padding { padding: 7rem 1rem; } }

.bg-light { background: hsl(var(--background)); }
.bg-dark {
  background: hsl(var(--surface-dark));
  color: hsl(var(--surface-dark-fg));
}

.eyebrow {
  color: hsl(var(--primary));
  font-weight: 600;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 0.75rem;
}

.text-gold {
  background: linear-gradient(135deg, hsl(48 100% 50%), hsl(42 100% 65%));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.glow-gold { box-shadow: 0 0 40px hsl(48 100% 50% / 0.15); }

/* Section headings */
.sec-head { max-width: 42rem; margin-bottom: 4rem; }
.sec-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.sec-head h2 {
  font-size: clamp(1.75rem, 1.2rem + 2vw, 2.25rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.01em;
}
.sec-head p { margin-top: 1rem; line-height: 1.65; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 600;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary {
  background: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  padding: 1rem 1.75rem;
  font-size: 1rem;
}
.btn-primary:hover { filter: brightness(1.1); }
.btn-primary .arrow { transition: transform 0.2s ease; }
.btn-primary:hover .arrow { transform: translateX(4px); }

.btn-ghost-dark {
  border: 1px solid hsl(0 0% 98% / 0.2);
  color: hsl(0 0% 98% / 0.8);
  padding: 1rem 1.75rem;
  font-size: 1rem;
  font-weight: 500;
}
.btn-ghost-dark:hover { border-color: hsl(48 100% 50% / 0.5); color: hsl(var(--primary)); }

.btn-ghost-light {
  border: 1px solid hsl(var(--border));
  color: hsl(var(--muted-foreground));
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 500;
}
.btn-ghost-light:hover { border-color: hsl(var(--primary)); color: hsl(var(--primary)); }

.btn-sm { padding: 0.75rem 1.5rem; font-size: 0.875rem; }
.btn-sm svg { width: 16px; height: 16px; }

/* ============================================================
   NAVBAR
   ============================================================ */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  transition: all 0.3s ease;
  background: transparent;
}
.nav.scrolled {
  background: hsl(0 0% 5% / 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid hsl(48 100% 50% / 0.1);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}
@media (min-width: 768px) { .nav-inner { height: 5rem; } }
.brand {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: hsl(var(--surface-dark-fg));
}
@media (min-width: 768px) { .brand { font-size: 1.5rem; } }
.nav-links { display: none; align-items: center; gap: 2rem; }
@media (min-width: 768px) { .nav-links { display: flex; } }
.nav-links a.link {
  font-size: 0.875rem;
  font-weight: 500;
  color: hsl(0 0% 98% / 0.7);
  transition: color 0.2s ease;
}
.nav-links a.link:hover { color: hsl(var(--primary)); }
.nav-cta {
  background: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.625rem 1.25rem;
  border-radius: var(--radius);
  transition: filter 0.2s ease;
}
.nav-cta:hover { filter: brightness(1.1); }
.nav-ig {
  display: inline-flex; align-items: center; justify-content: center;
  width: 2.25rem; height: 2.25rem;
  border-radius: 999px;
  border: 1px solid hsl(0 0% 98% / 0.2);
  color: hsl(0 0% 98% / 0.75);
  transition: all 0.2s ease;
}
.nav-ig:hover { color: hsl(var(--primary)); border-color: hsl(48 100% 50% / 0.5); }
.nav-ig svg { width: 18px; height: 18px; }
.nav-mobile .ig-row { display: inline-flex; align-items: center; gap: 0.5rem; }
.nav-mobile .ig-row svg { width: 18px; height: 18px; }
.footer-ig {
  display: inline-flex; align-items: center; justify-content: center;
  width: 2.25rem; height: 2.25rem;
  border-radius: 999px;
  border: 1px solid hsl(0 0% 98% / 0.15);
}
.footer-ig svg { width: 18px; height: 18px; }
.nav-toggle {
  display: inline-flex;
  background: none;
  border: none;
  color: hsl(var(--surface-dark-fg));
  cursor: pointer;
}
@media (min-width: 768px) { .nav-toggle { display: none; } }
.nav-mobile {
  display: none;
  background: hsl(0 0% 5% / 0.98);
  backdrop-filter: blur(12px);
  border-top: 1px solid hsl(48 100% 50% / 0.1);
  overflow: hidden;
}
.nav-mobile.open { display: block; }
.nav-mobile-inner { display: flex; flex-direction: column; gap: 1rem; padding: 1.5rem; }
.nav-mobile a.link { color: hsl(0 0% 98% / 0.8); font-weight: 500; }
.nav-mobile .nav-cta { text-align: center; padding: 0.75rem 1.25rem; margin-top: 0.5rem; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: hsl(var(--surface-dark));
  color: hsl(var(--surface-dark-fg));
}
.hero-grid-bg {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image:
    linear-gradient(hsl(48 100% 50%) 1px, transparent 1px),
    linear-gradient(90deg, hsl(48 100% 50%) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero .container { position: relative; padding-top: 8rem; padding-bottom: 4rem; }
@media (min-width: 768px) { .hero .container { padding-top: 9rem; padding-bottom: 6rem; } }
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 1024px) { .hero-grid { grid-template-columns: 1fr 1fr; gap: 4rem; } }

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: hsl(48 100% 50% / 0.1);
  border: 1px solid hsl(48 100% 50% / 0.2);
  border-radius: 999px;
  padding: 0.375rem 1rem;
  margin-bottom: 1.5rem;
}
.badge .dot {
  width: 0.5rem; height: 0.5rem; border-radius: 999px;
  background: hsl(var(--primary));
  animation: pulse-gold 2s ease-in-out infinite;
}
.badge span.t {
  color: hsl(var(--primary));
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero h1 {
  font-size: clamp(2.25rem, 1.2rem + 4vw, 3.75rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}
.hero .lede {
  font-size: clamp(1.125rem, 1rem + 0.4vw, 1.25rem);
  color: hsl(0 0% 98% / 0.6);
  max-width: 36rem;
  margin-bottom: 2rem;
  line-height: 1.65;
}
.hero-cta { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 3rem; }
@media (min-width: 640px) { .hero-cta { flex-direction: row; } }

.hero-stats { display: flex; flex-wrap: wrap; gap: 2rem; }
@media (min-width: 768px) { .hero-stats { gap: 3rem; } }
.hero-stats .stat .v {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 1rem + 1.5vw, 1.875rem);
  font-weight: 700;
  color: hsl(var(--primary));
}
.hero-stats .stat .l { font-size: 0.875rem; color: hsl(0 0% 98% / 0.5); margin-top: 0.125rem; }

.hero-media { position: relative; display: none; }
@media (min-width: 1024px) { .hero-media { display: block; } }
.hero-media .frame {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 0 40px hsl(48 100% 50% / 0.15);
}
.hero-media .frame::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to top, hsl(0 0% 5% / 0.8), transparent 60%);
}
.float-card {
  position: absolute;
  bottom: -1rem; left: -1rem;
  background: hsl(var(--surface-elevated));
  border: 1px solid hsl(48 100% 50% / 0.2);
  border-radius: 0.75rem;
  padding: 0.75rem 1.25rem;
  z-index: 2;
}
.float-card .v { color: hsl(var(--primary)); font-family: var(--font-display); font-weight: 700; font-size: 1.125rem; }
.float-card .l { color: hsl(0 0% 98% / 0.6); font-size: 0.75rem; }

/* Image placeholder */
.img-ph {
  position: relative;
  width: 100%;
  background-color: hsl(0 0% 12%);
  background-image: repeating-linear-gradient(
    135deg,
    hsl(0 0% 16%) 0, hsl(0 0% 16%) 1px,
    transparent 1px, transparent 11px
  );
  display: flex;
  align-items: center;
  justify-content: center;
}
.img-ph .tag {
  font-family: "Space Grotesk", monospace;
  font-size: 0.8125rem;
  letter-spacing: 0.05em;
  color: hsl(48 100% 50% / 0.55);
  border: 1px dashed hsl(48 100% 50% / 0.3);
  padding: 0.5rem 0.875rem;
  border-radius: 0.4rem;
  background: hsl(0 0% 5% / 0.4);
}
.hero-media .img-ph { aspect-ratio: 896 / 1152; }
.hero-media .frame img {
  width: 100%;
  aspect-ratio: 896 / 1152;
  object-fit: cover;
  object-position: center 25%;
}

/* ============================================================
   SOCIAL PROOF
   ============================================================ */
.proof {
  background: hsl(var(--surface-dark));
  color: hsl(var(--surface-dark-fg));
  border-top: 1px solid hsl(48 100% 50% / 0.1);
  border-bottom: 1px solid hsl(48 100% 50% / 0.1);
  padding: 2rem 1rem;
}
.proof-divider { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.5rem; }
.proof-divider .rule { height: 1px; flex: 1; background: hsl(0 0% 98% / 0.1); }
.proof-divider .label {
  font-size: 0.75rem;
  color: hsl(0 0% 98% / 0.4);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  white-space: nowrap;
}
.proof-tags { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.75rem; }
@media (min-width: 768px) { .proof-tags { gap: 1rem; } }
.proof-tags .chip {
  font-size: 0.875rem;
  color: hsl(0 0% 98% / 0.5);
  border: 1px solid hsl(0 0% 98% / 0.1);
  border-radius: 999px;
  padding: 0.5rem 1.25rem;
  transition: all 0.2s ease;
}
.proof-tags .chip:hover { border-color: hsl(48 100% 50% / 0.3); color: hsl(var(--primary)); }

/* ============================================================
   PROBLEM SECTION
   ============================================================ */
.muted { color: hsl(var(--muted-foreground)); }
.problem .sec-head h2 .muted { color: hsl(var(--muted-foreground)); }

.grid-3 { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 768px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } }

.card-light {
  border: 1px solid hsl(var(--border));
  border-radius: 0.75rem;
  padding: 2rem;
  transition: border-color 0.2s ease;
}
.card-light:hover { border-color: hsl(48 100% 50% / 0.3); }
.icon-box {
  width: 3rem; height: 3rem;
  border-radius: 0.625rem;
  background: hsl(48 100% 50% / 0.1);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
  color: hsl(var(--primary));
}
.icon-box svg { width: 22px; height: 22px; }
.card-light h3 { font-size: 1.125rem; font-weight: 700; margin-bottom: 0.75rem; }
.card-light p { color: hsl(var(--muted-foreground)); line-height: 1.65; font-size: 0.875rem; }

/* ============================================================
   SOLUTION SECTION
   ============================================================ */
.split { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: center; }
@media (min-width: 1024px) { .split { grid-template-columns: 1fr 1fr; } }
.solution h2 { font-size: clamp(1.75rem, 1.2rem + 2vw, 2.25rem); font-weight: 700; line-height: 1.15; margin-bottom: 1.5rem; }
.solution .body { color: hsl(0 0% 98% / 0.6); line-height: 1.7; margin-bottom: 2rem; max-width: 32rem; }
.link-gold { display: inline-flex; align-items: center; gap: 0.5rem; color: hsl(var(--primary)); font-weight: 600; transition: gap 0.2s ease; }
.link-gold:hover { gap: 0.75rem; }
.link-gold svg { width: 18px; height: 18px; }

.compare { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.compare .col {
  border-radius: 0.75rem;
  padding: 1.5rem;
  border: 1px solid hsl(0 0% 98% / 0.1);
  background: hsl(var(--surface-elevated));
}
.compare .col.hl { border-color: hsl(48 100% 50% / 0.3); background: hsl(48 100% 50% / 0.05); }
.compare .col .h { font-size: 0.875rem; font-weight: 600; margin-bottom: 1rem; color: hsl(0 0% 98% / 0.4); }
.compare .col.hl .h { color: hsl(var(--primary)); }
.compare .col li { font-size: 0.875rem; padding: 0.375rem 0; color: hsl(0 0% 98% / 0.5); text-decoration: line-through; }
.compare .col.hl li { color: hsl(0 0% 98% / 0.9); text-decoration: none; }

/* ============================================================
   METHOD
   ============================================================ */
.grid-4 { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 768px) { .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .grid-4 { grid-template-columns: repeat(4, 1fr); } }
.step { position: relative; }
.step .connector {
  display: none;
  position: absolute; top: 2.5rem; left: 100%;
  width: 100%; height: 1px; background: hsl(var(--border)); z-index: 0;
}
@media (min-width: 1024px) { .step .connector { display: block; } }
.step .inner {
  position: relative; z-index: 1;
  border: 1px solid hsl(var(--border));
  border-radius: 0.75rem;
  padding: 1.75rem;
  background: hsl(var(--background));
  height: 100%;
  transition: all 0.2s ease;
}
.step .inner:hover { border-color: hsl(48 100% 50% / 0.3); box-shadow: 0 0 40px hsl(48 100% 50% / 0.15); }
.step .top { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1.25rem; }
.step .num { font-size: 0.75rem; font-family: "Space Grotesk", monospace; color: hsl(var(--muted-foreground)); }
.step .inner h3 { font-size: 1.125rem; font-weight: 700; margin-bottom: 0.25rem; }
.step .sub { color: hsl(var(--primary)); font-size: 0.75rem; font-weight: 600; margin-bottom: 0.75rem; }
.step .inner p { font-size: 0.875rem; color: hsl(var(--muted-foreground)); line-height: 1.65; }
.icon-box.sm { width: 2.5rem; height: 2.5rem; margin-bottom: 0; }
.icon-box.sm svg { width: 20px; height: 20px; }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-band { padding: 3rem 1rem; }
.cta-band.light { background: hsl(var(--background)); }
.cta-band.dark { background: hsl(var(--surface-dark)); }
.cta-card {
  border-radius: 1rem;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
  border: 1px solid;
}
@media (min-width: 768px) { .cta-card { flex-direction: row; align-items: center; padding: 3rem; } }
.cta-band.light .cta-card { border-color: hsl(var(--border)); background: hsl(var(--secondary)); }
.cta-band.dark .cta-card { border-color: hsl(48 100% 50% / 0.2); background: hsl(var(--surface-elevated)); }
.cta-card h3 { font-size: clamp(1.25rem, 1rem + 1vw, 1.5rem); font-weight: 700; margin-bottom: 0.5rem; }
.cta-band.dark .cta-card h3 { color: hsl(var(--surface-dark-fg)); }
.cta-card .desc { font-size: 0.875rem; }
.cta-band.light .cta-card .desc { color: hsl(var(--muted-foreground)); }
.cta-band.dark .cta-card .desc { color: hsl(0 0% 98% / 0.5); }
.cta-actions { display: flex; flex-direction: column; gap: 0.75rem; flex-shrink: 0; }
@media (min-width: 640px) { .cta-actions { flex-direction: row; } }

/* ============================================================
   SERVICES
   ============================================================ */
.card-dark {
  border: 1px solid hsl(0 0% 98% / 0.1);
  border-radius: 0.75rem;
  padding: 2rem;
  background: hsl(var(--surface-elevated));
  transition: border-color 0.2s ease;
}
.card-dark:hover { border-color: hsl(48 100% 50% / 0.3); }
.card-dark .icon-box { margin-bottom: 1.5rem; transition: background 0.2s ease; }
.card-dark:hover .icon-box { background: hsl(48 100% 50% / 0.2); }
.card-dark .icon-box svg { width: 24px; height: 24px; }
.card-dark h3 { font-size: 1.125rem; font-weight: 700; margin-bottom: 0.75rem; color: hsl(var(--surface-dark-fg)); }
.card-dark .lead { font-size: 0.875rem; color: hsl(0 0% 98% / 0.5); line-height: 1.65; margin-bottom: 1.5rem; }
.outcomes li { display: flex; align-items: flex-start; gap: 0.5rem; font-size: 0.875rem; color: hsl(0 0% 98% / 0.7); padding: 0.3125rem 0; }
.outcomes li .b { width: 0.375rem; height: 0.375rem; border-radius: 999px; background: hsl(var(--primary)); margin-top: 0.4375rem; flex-shrink: 0; }
.grid-3.svc { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 1024px) { .grid-3.svc { grid-template-columns: repeat(3, 1fr); } }

/* ============================================================
   CASE STUDIES
   ============================================================ */
.case {
  border: 1px solid hsl(var(--border));
  border-radius: 0.75rem;
  overflow: hidden;
  transition: border-color 0.2s ease;
}
.case:hover { border-color: hsl(48 100% 50% / 0.3); }
.case .metric {
  background: hsl(var(--secondary));
  padding: 1.5rem;
  text-align: center;
  border-bottom: 1px solid hsl(var(--border));
}
.case .metric .v { font-family: var(--font-display); font-size: 2.25rem; font-weight: 700; color: hsl(var(--primary)); line-height: 1; }
.case .metric .l { font-size: 0.75rem; color: hsl(var(--muted-foreground)); margin-top: 0.25rem; }
.case .body { padding: 1.75rem; display: flex; flex-direction: column; gap: 1rem; }
.case .seg { font-size: 0.75rem; font-weight: 600; color: hsl(var(--primary)); text-transform: uppercase; letter-spacing: 0.05em; }
.case .row .k { font-size: 0.75rem; font-weight: 600; color: hsl(var(--muted-foreground)); text-transform: uppercase; margin-bottom: 0.25rem; }
.case .row.res .k { color: hsl(var(--primary)); }
.case .row p { font-size: 0.875rem; color: hsl(0 0% 5% / 0.8); line-height: 1.6; }
.case .row.res p { color: hsl(var(--foreground)); font-weight: 500; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.tcard {
  border: 1px solid hsl(0 0% 98% / 0.1);
  border-radius: 0.75rem;
  padding: 2rem;
  background: hsl(var(--surface-elevated));
}
.tcard .qi { color: hsl(48 100% 50% / 0.4); margin-bottom: 1rem; }
.tcard .qi svg { width: 24px; height: 24px; }
.tcard .quote { color: hsl(0 0% 98% / 0.8); line-height: 1.7; margin-bottom: 1.5rem; font-size: 0.875rem; }
.tcard .name { font-family: var(--font-display); font-weight: 700; color: hsl(var(--surface-dark-fg)); font-size: 0.875rem; }
.tcard .role { color: hsl(0 0% 98% / 0.4); font-size: 0.75rem; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-wrap { max-width: 48rem; margin: 0 auto; }
.faq-list { display: flex; flex-direction: column; gap: 0.75rem; }
.faq-item {
  border: 1px solid hsl(var(--border));
  border-radius: 0.75rem;
  padding: 0 1.5rem;
  transition: border-color 0.2s ease;
}
.faq-item.open { border-color: hsl(48 100% 50% / 0.3); }
.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 600;
  color: hsl(var(--foreground));
  padding: 1.25rem 0;
  font-size: 0.9375rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  transition: color 0.2s ease;
}
@media (min-width: 768px) { .faq-q { font-size: 1rem; } }
.faq-q:hover { color: hsl(var(--primary)); }
.faq-q .chev { flex-shrink: 0; transition: transform 0.3s ease; color: hsl(var(--muted-foreground)); }
.faq-q .chev svg { width: 18px; height: 18px; display: block; }
.faq-item.open .faq-q .chev { transform: rotate(180deg); color: hsl(var(--primary)); }
.faq-a { overflow: hidden; max-height: 0; transition: max-height 0.35s ease; }
.faq-item.open .faq-a { max-height: 24rem; }
.faq-a-inner { overflow: hidden; }
.faq-a p { color: hsl(var(--muted-foreground)); font-size: 0.875rem; line-height: 1.7; padding-bottom: 1.25rem; }

/* ============================================================
   ABOUT
   ============================================================ */
.about .frame {
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid hsl(48 100% 50% / 0.2);
  max-width: 100%;
}
.about .img-ph { aspect-ratio: 896 / 1152; }
.about h2 { font-size: clamp(1.75rem, 1.2rem + 2vw, 2.25rem); font-weight: 700; line-height: 1.15; margin-bottom: 1.5rem; color: hsl(var(--surface-dark-fg)); }
.about .prose { display: flex; flex-direction: column; gap: 1rem; color: hsl(0 0% 98% / 0.6); line-height: 1.7; font-size: 0.875rem; }
.about-stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
  margin-top: 2rem; padding-top: 2rem;
  border-top: 1px solid hsl(0 0% 98% / 0.1);
}
.about-stats .v { font-family: var(--font-display); font-size: 1.25rem; font-weight: 700; color: hsl(var(--primary)); }
.about-stats .l { font-size: 0.75rem; color: hsl(0 0% 98% / 0.4); margin-top: 0.25rem; }

/* ============================================================
   FINAL CTA
   ============================================================ */
.final {
  position: relative;
  overflow: hidden;
  background: hsl(var(--surface-dark));
  color: hsl(var(--surface-dark-fg));
}
.final .glow {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 600px; border-radius: 999px;
  background: hsl(48 100% 50% / 0.05);
  filter: blur(120px);
  pointer-events: none;
}
.final .container { position: relative; z-index: 1; }
.final .wrap { text-align: center; max-width: 42rem; margin: 0 auto; }
.final h2 { font-size: clamp(1.875rem, 1.2rem + 3vw, 3rem); font-weight: 700; line-height: 1.15; margin-bottom: 1.5rem; }
.final .lede { color: hsl(0 0% 98% / 0.6); line-height: 1.7; margin-bottom: 2.5rem; max-width: 32rem; margin-left: auto; margin-right: auto; }
.final .actions { display: flex; flex-direction: column; gap: 1rem; justify-content: center; }
@media (min-width: 640px) { .final .actions { flex-direction: row; } }
.pulse { animation: pulse-gold 2s ease-in-out infinite; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: hsl(var(--surface-dark));
  color: hsl(var(--surface-dark-fg));
  border-top: 1px solid hsl(0 0% 98% / 0.1);
  padding: 2.5rem 1rem;
}
.footer-inner { display: flex; flex-direction: column; align-items: center; gap: 1.5rem; }
@media (min-width: 768px) { .footer-inner { flex-direction: row; justify-content: space-between; } }
.footer .brand { font-size: 1.25rem; }
.footer .tagline { font-size: 0.75rem; color: hsl(0 0% 98% / 0.3); margin-top: 0.25rem; }
.footer-links { display: flex; align-items: center; gap: 1.5rem; }
.footer-links a { font-size: 0.875rem; color: hsl(0 0% 98% / 0.4); transition: color 0.2s ease; }
.footer-links a:hover { color: hsl(var(--primary)); }
.footer .copy { font-size: 0.75rem; color: hsl(0 0% 98% / 0.2); }

/* ============================================================
   WHATSAPP FLOAT
   ============================================================ */
.wa-float {
  position: fixed;
  bottom: 1.5rem; right: 1.5rem;
  z-index: 50;
  width: 3.5rem; height: 3.5rem;
  background: #25D366;
  border-radius: 999px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px hsl(0 0% 0% / 0.25);
  transition: transform 0.2s ease;
}
.wa-float:hover { transform: scale(1.1); }
.wa-float svg { width: 26px; height: 26px; color: #fff; }

/* ============================================================
   PORTFÓLIO (galeria de fotos + vídeos)
   ============================================================ */
.portfolio { background: hsl(var(--surface-dark)); color: hsl(var(--surface-dark-fg)); }

.pf-filters {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 0.75rem; margin-bottom: 3rem;
}
.pf-filter {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: hsl(0 0% 98% / 0.6);
  background: transparent;
  border: 1px solid hsl(0 0% 98% / 0.12);
  border-radius: 999px;
  padding: 0.5rem 1.25rem;
  cursor: pointer;
  transition: all 0.2s ease;
}
.pf-filter:hover { border-color: hsl(48 100% 50% / 0.4); color: hsl(var(--surface-dark-fg)); }
.pf-filter.active {
  background: hsl(var(--primary));
  border-color: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  font-weight: 600;
}

.pf-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 640px) { .pf-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .pf-grid { grid-template-columns: repeat(3, 1fr); } }

.pf-card {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: 0.875rem;
  overflow: hidden;
  border: 1px solid hsl(48 100% 50% / 0.12);
  background: hsl(var(--surface-elevated));
}

/* Vídeo card */
.pf-video { cursor: pointer; }
.pf-video .pf-thumb {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease, opacity 0.3s ease;
}
.pf-video:hover .pf-thumb { transform: scale(1.05); opacity: 0.85; }
.pf-video::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to top, hsl(0 0% 3% / 0.85), transparent 55%);
  pointer-events: none;
}
.pf-play {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 3.75rem; height: 3.75rem;
  border-radius: 999px;
  background: hsl(var(--primary));
  display: flex; align-items: center; justify-content: center;
  z-index: 2;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 6px 24px hsl(0 0% 0% / 0.4);
}
.pf-video:hover .pf-play { transform: translate(-50%, -50%) scale(1.12); box-shadow: 0 0 32px hsl(48 100% 50% / 0.5); }
.pf-play svg { width: 26px; height: 26px; color: hsl(var(--primary-foreground)); margin-left: 3px; }

.pf-badge {
  position: absolute; top: 0.875rem; left: 0.875rem;
  z-index: 2;
  font-size: 0.6875rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.1em;
  padding: 0.3rem 0.625rem;
  border-radius: 999px;
  background: hsl(0 0% 3% / 0.6);
  backdrop-filter: blur(4px);
  border: 1px solid hsl(0 0% 98% / 0.15);
  color: hsl(var(--surface-dark-fg));
  pointer-events: none;
}
.pf-badge.gold { color: hsl(var(--primary)); border-color: hsl(48 100% 50% / 0.3); }

.pf-label {
  position: absolute; left: 1rem; right: 1rem; bottom: 0.875rem;
  z-index: 2;
  pointer-events: none;
}
.pf-label .t { font-family: var(--font-display); font-weight: 600; font-size: 0.9375rem; color: hsl(var(--surface-dark-fg)); }
.pf-label .s { font-size: 0.75rem; color: hsl(0 0% 98% / 0.55); margin-top: 0.1rem; }

/* Foto card (image-slot) */
.pf-photo image-slot { width: 100%; height: 100%; display: block; }

/* Foto card vinda de arquivo (clicável → amplia) */
.pf-image { cursor: pointer; }
.pf-image .pf-thumb { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.pf-image:hover .pf-thumb { transform: scale(1.05); }
.pf-image::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to top, hsl(0 0% 3% / 0.6), transparent 50%);
  pointer-events: none;
  opacity: 0; transition: opacity 0.3s ease;
}
.pf-image:hover::after { opacity: 1; }
.pf-image .pf-label { opacity: 0; transition: opacity 0.3s ease; }
.pf-image:hover .pf-label { opacity: 1; }

/* Lightbox */
.pf-lightbox {
  position: fixed; inset: 0; z-index: 100;
  display: none;
  align-items: center; justify-content: center;
  padding: 1.5rem;
  background: hsl(0 0% 2% / 0.92);
  backdrop-filter: blur(8px);
}
.pf-lightbox.open { display: flex; }
.pf-close {
  position: absolute; top: 1.25rem; right: 1.25rem;
  width: 2.75rem; height: 2.75rem;
  border-radius: 999px;
  background: hsl(0 0% 98% / 0.1);
  border: 1px solid hsl(0 0% 98% / 0.2);
  color: hsl(var(--surface-dark-fg));
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease;
}
.pf-close:hover { background: hsl(48 100% 50% / 0.2); color: hsl(var(--primary)); }
.pf-close svg { width: 22px; height: 22px; }
.pf-stage { width: 100%; max-width: 1080px; }
.pf-stage .pf-embed {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 0 60px hsl(0 0% 0% / 0.6);
}
.pf-stage .pf-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.pf-stage .pf-embed.vertical {
  aspect-ratio: 9 / 16;
  max-width: min(380px, 42vh);
  margin: 0 auto;
}
.pf-stage img.pf-full {
  display: block;
  width: 100%;
  max-height: 82vh;
  object-fit: contain;
  margin: 0 auto;
  border-radius: 0.75rem;
}

/* ============================================================
   SCROLL ANIMATIONS (mimic framer-motion whileInView)
   ============================================================ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.1s; }
.reveal.d2 { transition-delay: 0.2s; }
.reveal.d3 { transition-delay: 0.3s; }

@keyframes pulse-gold {
  0%, 100% { box-shadow: 0 0 20px hsl(48 100% 50% / 0.3); }
  50%      { box-shadow: 0 0 40px hsl(48 100% 50% / 0.6); }
}

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