/* =============================================================
   Code Ads — Design System Premium v2
   Silicon Valley High-End | CSS Nativo | Mobile-First
   ============================================================= */

/* FONTES LOCAIS */
@font-face {
  font-family: 'Inter';
  src: url('../font/inter-v20-latin-300.woff2') format('woff2');
  font-weight: 300;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('../font/inter-v20-latin-regular.woff2') format('woff2');
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('../font/inter-v20-latin-500.woff2') format('woff2');
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('../font/inter-v20-latin-700.woff2') format('woff2');
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('../font/inter-v20-latin-900.woff2') format('woff2');
  font-weight: 900;
  font-display: swap;
}

/* Fallback com métricas ajustadas para bater com a Inter (evita reflow/CLS na troca de fonte) */
@font-face {
  font-family: 'Inter Fallback';
  src: local('Arial');
  ascent-override: 90.44%;
  descent-override: 22.52%;
  line-gap-override: 0%;
  size-adjust: 107.12%;
}

/* ─────────────────────────────
   TOKENS
   ───────────────────────────── */
:root {
  --navy: #11182A;
  --navy-light: #161E34;
  --navy-deep: #0C1020;
  --glass-bg: rgba(22, 30, 52, 0.58);
  --glass-border: rgba(255, 255, 255, 0.07);
  --glass-blur: blur(18px);
  --emerald: #33AF7F;
  --emerald-dim: rgba(51, 175, 127, 0.14);
  --emerald-glow: 0 0 48px rgba(51, 175, 127, 0.4);
  --emerald-h: #28936A;
  --white: #FFFFFF;
  --g400: #8896B0;
  --g600: #3F5070;

  --font: 'Inter', 'Inter Fallback', system-ui, sans-serif;

  --xs: clamp(0.68rem, 1.8vw, 0.78rem);
  --sm: clamp(0.8rem, 2vw, 0.875rem);
  --base: clamp(0.9rem, 2.5vw, 1rem);
  --lg: clamp(1rem, 3vw, 1.125rem);
  --xl: clamp(1.1rem, 3.5vw, 1.3rem);
  --2xl: clamp(1.4rem, 4vw, 1.875rem);
  --3xl: clamp(1.7rem, 5vw, 2.5rem);
  --hero: clamp(1.9rem, 5.2vw, 3.4rem);

  --sp2: 0.5rem;
  --sp3: 0.75rem;
  --sp4: 1rem;
  --sp5: 1.25rem;
  --sp6: 1.5rem;
  --sp8: 2rem;
  --sp10: 2.5rem;
  --sp12: 3rem;
  --sp16: 4rem;
  --sp20: 5rem;
  --sp28: 7rem;

  --max: 1180px;
  --r: 10px;
  --r2: 18px;
  --r3: 24px;
  --ease: cubic-bezier(.4, 0, .2, 1);
  --dur: 220ms;
  --dur2: 380ms;
}

/* ─────────────────────────────
   RESET & BASE
   ───────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

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

body {
  font-family: var(--font);
  font-size: var(--base);
  color: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  background:
    radial-gradient(ellipse 80% 50% at 10% 20%, rgba(51, 175, 127, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 90% 70%, rgba(51, 175, 127, 0.04) 0%, transparent 55%),
    var(--navy);
  background-attachment: fixed;
  overflow-x: hidden;
  cursor: none;
  /* cursor substituído pelo glow */
}

img,
svg,
video {
  display: block;
  max-width: 100%
}

a {
  color: inherit;
  text-decoration: none
}

ul {
  list-style: none
}

button {
  cursor: none;
  border: none;
  background: none
}

:focus-visible {
  outline: 2px solid var(--emerald);
  outline-offset: 3px;
  cursor: auto
}

:target {
  scroll-margin-top: 90px
}

.honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  width: 1px;
  height: 1px;
  overflow: hidden
}

/* ─────────────────────────────
   CURSOR GLOW
   ───────────────────────────── */
.cursor-glow {
  position: fixed;
  width: 18px;
  height: 18px;
  background: var(--emerald);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: opacity var(--dur), width var(--dur), height var(--dur);
  mix-blend-mode: screen;
  opacity: .9;
  box-shadow: 0 0 20px 6px rgba(51, 175, 127, 0.45);
}

.cursor-glow.cursor-hover {
  width: 36px;
  height: 36px;
  opacity: .65
}

.cursor-glow-trail {
  position: fixed;
  width: 6px;
  height: 6px;
  border: 1.5px solid rgba(51, 175, 127, 0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: all 0.12s linear;
  opacity: .5;
}

/* ─────────────────────────────
   LAYOUT
   ───────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: var(--sp6)
}

.section {
  padding-block: var(--sp28)
}

.section-header {
  text-align: center;
  margin-bottom: var(--sp16)
}

.section-header h2 {
  font-size: var(--3xl);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.035em;
  background: linear-gradient(140deg, #fff 55%, rgba(51, 175, 127, .85));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-desc {
  color: var(--g400);
  margin-top: var(--sp5);
  font-size: var(--lg);
  font-weight: 300;
  max-width: 600px;
  margin-inline: auto
}

.section-eyebrow {
  display: inline-block;
  font-size: var(--xs);
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--emerald);
  background: var(--emerald-dim);
  border: 1px solid rgba(51, 175, 127, .28);
  border-radius: 50px;
  padding: 5px 16px;
  margin-bottom: var(--sp4);
}

/* ─────────────────────────────
   BOTÕES
   ───────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--sp2);
  padding: .8rem 1.6rem;
  border-radius: var(--r);
  font-weight: 700;
  font-size: var(--base);
  transition: all var(--dur) var(--ease);
  white-space: nowrap;
  cursor: none;
}

.btn-outline {
  border: 1.5px solid rgba(51, 175, 127, .6);
  color: var(--emerald);
  background: transparent;
}

.btn-outline:hover {
  background: var(--emerald);
  color: var(--navy);
  box-shadow: var(--emerald-glow)
}

.btn-solid {
  background: var(--emerald);
  color: var(--navy);
  font-weight: 800;
  letter-spacing: -.01em;
  position: relative;
  overflow: hidden;
}

.btn-solid::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, .18), transparent 60%);
  opacity: 0;
  transition: opacity var(--dur)
}

.btn-solid:hover::after {
  opacity: 1
}

.btn-solid:hover {
  background: var(--emerald-h);
  transform: translateY(-2px);
  box-shadow: var(--emerald-glow), 0 20px 50px rgba(0, 0, 0, .35)
}

.btn-solid:active {
  transform: none
}

.btn-ghost {
  color: var(--g400);
  font-weight: 600;
  font-size: var(--base);
  padding: .8rem 0;
  background: none;
  border: none;
  transition: color var(--dur)
}

.btn-ghost:hover {
  color: var(--white)
}

.btn-lg {
  padding: 1rem 2.4rem;
  font-size: var(--lg);
  border-radius: 12px
}

.btn-full {
  width: 100%;
  justify-content: center
}

/* ─────────────────────────────
   HEADER
   ───────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(17, 24, 42, .78);
  backdrop-filter: blur(22px) saturate(1.5);
  -webkit-backdrop-filter: blur(22px) saturate(1.5);
  border-bottom: 1px solid var(--glass-border);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  height: 68px;
  gap: var(--sp6)
}

.header-inner .logo {
  grid-column: 1;
}

.logo img {
  height: 32px;
  width: auto
}

.main-nav {
  display: none;
  grid-column: 2;
  justify-self: center;
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: var(--sp5)
}

.main-nav a {
  font-size: var(--sm);
  color: var(--g400);
  font-weight: 500;
  transition: color var(--dur);
  position: relative;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--emerald);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur) var(--ease);
}

.main-nav a:hover {
  color: var(--white)
}

.main-nav a:hover::after {
  transform: scaleX(1)
}

.header-actions {
  display: flex;
  align-items: center;
  gap: var(--sp4);
  grid-column: 3;
  justify-self: end;
}

.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: var(--sp2);
  cursor: none
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--dur) var(--ease)
}

.hamburger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg)
}

.hamburger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0
}

.hamburger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg)
}

.mobile-nav {
  border-top: 1px solid var(--glass-border);
  background: rgba(17, 24, 42, .97);
  backdrop-filter: blur(20px);
  padding: var(--sp6)
}

.mobile-nav ul {
  display: flex;
  flex-direction: column;
  gap: var(--sp4)
}

.mobile-nav a {
  font-size: var(--lg);
  color: var(--g400)
}

.mobile-nav a:hover {
  color: var(--white)
}

.mobile-nav .btn {
  margin-top: var(--sp2)
}

.mobile-nav[hidden] {
  display: none
}

@media(min-width:1024px) {
  .main-nav {
    display: flex
  }

  .hamburger {
    display: none
  }
}

/* ─────────────────────────────
   HERO
   ───────────────────────────── */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none
}

.geo {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px)
}

.geo-1 {
  width: 720px;
  height: 720px;
  background: radial-gradient(circle, rgba(51, 175, 127, .22), transparent 70%);
  top: -220px;
  right: -180px;
  animation: pulse1 9s ease-in-out infinite
}

.geo-2 {
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(17, 50, 130, .5), transparent 70%);
  bottom: -120px;
  left: -140px;
  animation: pulse2 12s ease-in-out infinite
}

.geo-3 {
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(51, 175, 127, .1), transparent 70%);
  top: 40%;
  left: 35%;
  animation: pulse1 15s ease-in-out infinite reverse
}

.geo-4 {
  position: absolute;
  width: 1px;
  height: 60%;
  background: linear-gradient(to bottom, transparent, rgba(51, 175, 127, .18), transparent);
  right: 22%;
  top: 12%
}

.geo-5 {
  position: absolute;
  width: 1px;
  height: 40%;
  background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, .07), transparent);
  right: 38%;
  top: 28%
}

@keyframes pulse1 {

  0%,
  100% {
    opacity: .8;
    transform: scale(1)
  }

  50% {
    opacity: 1;
    transform: scale(1.07)
  }
}

@keyframes pulse2 {

  0%,
  100% {
    opacity: .6;
    transform: scale(1)
  }

  50% {
    opacity: .9;
    transform: scale(1.05)
  }
}

.dots-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, .055) 1px, transparent 1px);
  background-size: 38px 38px;
  mask-image: radial-gradient(ellipse 85% 75% at 50% 50%, black 20%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 85% 75% at 50% 50%, black 20%, transparent 100%);
}

/* Hero 2-col grid */
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp16);
  align-items: center;
  padding-block: var(--sp16);
  width: 100%;
}

@media(min-width:1024px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--sp12)
  }
}

/* Hero eyebrow animado */
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--sp2);
  font-size: var(--xs);
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--emerald);
  background: var(--emerald-dim);
  border: 1px solid rgba(51, 175, 127, .25);
  border-radius: 50px;
  padding: 6px 16px;
  margin-bottom: var(--sp6);
}

.hero-eyebrow-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--emerald);
  animation: live-pulse 2s ease-in-out infinite;
}

@keyframes live-pulse {

  0%,
  100% {
    opacity: 1;
    box-shadow: 0 0 0 0 rgba(51, 175, 127, .5)
  }

  50% {
    opacity: .7;
    box-shadow: 0 0 0 5px rgba(51, 175, 127, 0)
  }
}

.hero-title {
  font-size: var(--hero);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.hero-title .highlight {
  background: linear-gradient(100deg, var(--emerald) 15%, #7DFFCC 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  color: var(--g400);
  font-size: var(--xl);
  font-weight: 300;
  margin-top: var(--sp6);
  margin-bottom: var(--sp8);
  max-width: 520px;
  line-height: 1.75;
}

.hero-ctas {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--sp4);
  margin-bottom: var(--sp10)
}

/* Trust Bar */
.trust-bar {
  display: flex;
  flex-direction: column;
  gap: var(--sp3)
}

.trust-label {
  font-size: var(--xs);
  color: var(--g600);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 500
}

.trust-logos {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp2);
  align-items: center
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: 8px;
  background: rgba(255, 255, 255, .03);
  backdrop-filter: blur(8px);
  font-size: var(--xs);
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .28);
  transition: all var(--dur);
}

.trust-badge svg {
  opacity: .4;
  flex-shrink: 0
}

.trust-badge:hover {
  color: rgba(255, 255, 255, .5);
  border-color: rgba(255, 255, 255, .14)
}

/* ─────────────────────────────
   CARD PAGESPEED (Hero visual)
   ───────────────────────────── */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media(min-width:1024px) {
  .hero-visual {
    justify-content: flex-end
  }
}

.ps-card {
  width: 100%;
  max-width: 380px;
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--r3);
  padding: var(--sp6) var(--sp8);
  position: relative;
  overflow: hidden;
  box-shadow: 0 32px 96px rgba(0, 0, 0, .6), 0 0 0 1px rgba(255, 255, 255, .04);
  animation: float 6s ease-in-out infinite;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-10px)
  }
}

.ps-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(255, 255, 255, .06) 0%, transparent 45%);
  pointer-events: none;
}

/* linha top emerald */
.ps-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--emerald), rgba(51, 175, 127, .1));
  border-radius: var(--r3) var(--r3) 0 0;
}

/* Browser bar */
.ps-browser-bar {
  display: flex;
  align-items: center;
  gap: var(--sp2);
  margin-bottom: var(--sp5);
  padding-bottom: var(--sp4);
  border-bottom: 1px solid rgba(255, 255, 255, .07)
}

.ps-dots {
  display: flex;
  gap: 5px
}

.ps-dot {
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%
}

.ps-dot--red {
  background: rgba(255, 90, 90, .7)
}

.ps-dot--yellow {
  background: rgba(255, 185, 50, .7)
}

.ps-dot--green {
  background: rgba(60, 210, 100, .7)
}

.ps-url-bar {
  flex: 1;
  background: rgba(255, 255, 255, .07);
  border-radius: 5px;
  padding: 4px 10px;
  font-size: var(--xs);
  color: var(--g400);
  font-family: 'Courier New', monospace;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: flex;
  align-items: center;
  gap: 5px;
}

/* Label */
.ps-label {
  font-size: var(--xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--g400);
  text-align: center;
  margin-bottom: var(--sp5)
}

/* Scores */
.ps-scores {
  display: flex;
  justify-content: center;
  gap: var(--sp6);
  margin-bottom: var(--sp6)
}

.ps-score-item {
  text-align: center
}

.ps-score-item>p {
  font-size: 10px;
  color: var(--g400);
  margin-top: 4px;
  font-weight: 600
}

.ps-score-ring {
  position: relative;
  width: 58px;
  height: 58px
}

.ps-score-ring svg {
  width: 100%;
  height: 100%
}

.ps-score-ring span {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 900;
  color: var(--emerald);
}

/* Métricas */
.ps-metrics {
  display: flex;
  flex-direction: column;
  gap: var(--sp3)
}

.ps-metric-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 5px
}

.ps-metric-header span {
  font-size: 11px;
  color: var(--g400)
}

.ps-metric-header strong {
  font-size: 11px;
  font-weight: 800;
  color: #4ADE80
}

.ps-bar-track {
  height: 4px;
  background: rgba(255, 255, 255, .08);
  border-radius: 4px;
  overflow: hidden
}

.ps-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #33AF7F, #4ADE80);
  border-radius: 4px
}

/* Footer do card */
.ps-footer {
  margin-top: var(--sp5);
  text-align: center
}

.ps-verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(51, 175, 127, .1);
  border: 1px solid rgba(51, 175, 127, .25);
  border-radius: 50px;
  padding: 5px 14px;
  font-size: 10px;
  font-weight: 800;
  color: #4ADE80;
  text-transform: uppercase;
  letter-spacing: .06em;
}

/* Float tags */
.float-tag {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, .5);
}

.float-tag--tl {
  top: -18px;
  right: 280px;
  left: auto;
  background: linear-gradient(135deg, #2D9B6F, #1F7252);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .15);
  transform: rotate(2deg);
  animation: float-tl 5s ease-in-out infinite;
}

.float-tag--br {
  bottom: -28px;
  left: 350px;
  right: auto;
  background: rgba(22, 30, 52, .92);
  border: 1px solid rgba(51, 175, 127, .35);
  color: var(--emerald);
  transform: rotate(-2deg);
  animation: float-br 7s ease-in-out infinite;
}

@keyframes float-tl {

  0%,
  100% {
    transform: rotate(2deg) translateY(0)
  }

  50% {
    transform: rotate(2deg) translateY(-6px)
  }
}

@keyframes float-br {

  0%,
  100% {
    transform: rotate(-2deg) translateY(0)
  }

  50% {
    transform: rotate(-2deg) translateY(-5px)
  }
}

@keyframes float2 {

  0%,
  100% {
    transform: rotate(-4deg) translateY(0)
  }

  50% {
    transform: rotate(-4deg) translateY(-6px)
  }
}

.float-tag--br {
  animation-name: float3
}

@keyframes float3 {

  0%,
  100% {
    transform: rotate(3deg) translateY(0)
  }

  50% {
    transform: rotate(3deg) translateY(-5px)
  }
}

/* Live signal */
.live-signal {
  position: absolute;
  top: 16px;
  right: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  font-weight: 700;
  color: var(--g400);
  text-transform: uppercase;
  letter-spacing: .08em;
  background: rgba(22, 30, 52, .8);
  border: 1px solid var(--glass-border);
  border-radius: 50px;
  padding: 4px 12px;
  backdrop-filter: blur(8px);
}

.live-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4ADE80;
  animation: live-pulse 1.8s ease-in-out infinite;
}

/* ─────────────────────────────
   SEPARADORES DE SEÇÃO
   ───────────────────────────── */
.section+.section,
.pain-section,
.solution-section,
.qualification-section,
.faq-section,
.form-section {
  border-top: 1px solid rgba(255, 255, 255, .05);
}

/* ─────────────────────────────
   A DOR — Cards
   ───────────────────────────── */
.pain-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp8)
}

.pain-card {
  border: 1px solid var(--glass-border);
  border-radius: var(--r2);
  padding: var(--sp10) var(--sp8);
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  position: relative;
  overflow: hidden;
  transition: border-color var(--dur), transform var(--dur), box-shadow var(--dur);
}

.card-top-line {
  position: absolute;
  top: 0;
  left: var(--sp8);
  right: var(--sp8);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(51, 175, 127, .35), transparent);
  opacity: 0;
  transition: opacity var(--dur);
}

.pain-card:hover .card-top-line {
  opacity: 1
}

.pain-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(255, 255, 255, .04), transparent 50%);
  pointer-events: none
}

.pain-card:hover {
  border-color: rgba(51, 175, 127, .3);
  transform: translateY(-5px);
  box-shadow: 0 24px 64px rgba(0, 0, 0, .45), 0 0 0 1px rgba(51, 175, 127, .08)
}

.pain-icon {
  color: var(--emerald);
  margin-bottom: var(--sp6)
}

.pain-card h3 {
  font-size: var(--xl);
  font-weight: 800;
  margin-bottom: var(--sp4);
  letter-spacing: -.02em
}

.pain-card p {
  color: var(--g400);
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: var(--sp5)
}

.pain-card strong {
  color: var(--white);
  font-weight: 700
}

.card-metric {
  display: inline-block;
  font-size: var(--xs);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #F87171;
  background: rgba(248, 113, 113, .08);
  border: 1px solid rgba(248, 113, 113, .2);
  border-radius: 50px;
  padding: 4px 12px;
}

@media(min-width:768px) {
  .pain-grid {
    grid-template-columns: repeat(3, 1fr)
  }
}

/* ─────────────────────────────
   PILARES — Cards
   ───────────────────────────── */
.pillars-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp8)
}

.pillar-card {
  position: relative;
  border: 1px solid var(--glass-border);
  border-radius: var(--r2);
  padding: var(--sp10) var(--sp8);
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  overflow: hidden;
  transition: border-color var(--dur), transform var(--dur), box-shadow var(--dur);
}

.pillar-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(255, 255, 255, .05), transparent 45%);
  pointer-events: none
}

.pillar-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--emerald), rgba(51, 175, 127, .1));
  opacity: 0;
  transition: opacity var(--dur)
}

.pillar-card:hover {
  border-color: rgba(51, 175, 127, .35);
  transform: translateY(-5px);
  box-shadow: 0 28px 72px rgba(0, 0, 0, .5), 0 0 0 1px rgba(51, 175, 127, .1)
}

.pillar-card:hover::after {
  opacity: 1
}

.pillar-number {
  font-size: 4.5rem;
  font-weight: 900;
  line-height: 1;
  color: rgba(255, 255, 255, .03);
  position: absolute;
  top: var(--sp4);
  right: var(--sp6);
  pointer-events: none;
  user-select: none
}

.pillar-icon {
  color: var(--emerald);
  margin-bottom: var(--sp5)
}

.pillar-card h3 {
  font-size: var(--xl);
  font-weight: 800;
  margin-bottom: var(--sp4);
  letter-spacing: -.02em
}

.pillar-card p {
  color: var(--g400);
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: var(--sp5)
}

.pillar-card strong {
  color: var(--white);
  font-weight: 700
}

.pillar-tag {
  display: inline-block;
  font-size: var(--xs);
  color: var(--emerald);
  background: rgba(51, 175, 127, .1);
  border: 1px solid rgba(51, 175, 127, .2);
  border-radius: 50px;
  padding: 4px 14px;
  font-weight: 700;
  letter-spacing: .04em
}

@media(min-width:768px) {
  .pillars-grid {
    grid-template-columns: repeat(3, 1fr)
  }
}

/* ─────────────────────────────
   QUALIFICAÇÃO
   ───────────────────────────── */
.qualification-section {
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-light) 50%, var(--navy) 100%);
}

.qual-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp5);
  max-width: 820px;
  margin-inline: auto
}

.qual-item {
  display: flex;
  align-items: center;
  gap: var(--sp6);
  padding: var(--sp8);
  border: 1px solid var(--glass-border);
  border-radius: var(--r2);
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  position: relative;
  overflow: hidden;
  transition: border-color var(--dur), transform var(--dur), box-shadow var(--dur);
}

.qual-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, .04), transparent 55%);
  pointer-events: none
}

.qual-item:hover {
  border-color: rgba(51, 175, 127, .3);
  transform: translateX(6px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, .35)
}

.qual-icon {
  flex-shrink: 0;
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(51, 175, 127, .12);
  border: 1px solid rgba(51, 175, 127, .2);
  border-radius: 14px;
  color: var(--emerald)
}

.qual-item h3 {
  font-size: var(--lg);
  font-weight: 800;
  margin-bottom: var(--sp2);
  letter-spacing: -.01em
}

.qual-item>div:nth-child(2) {
  flex: 1
}

.qual-item p {
  color: var(--g400);
  font-weight: 300;
  font-size: var(--sm)
}

.qual-arrow {
  color: rgba(51, 175, 127, .4);
  font-size: 1.2rem;
  font-weight: 900;
  flex-shrink: 0;
  transition: color var(--dur), transform var(--dur)
}

.qual-item:hover .qual-arrow {
  color: var(--emerald);
  transform: translateX(4px)
}

/* ─────────────────────────────
   FAQ
   ───────────────────────────── */
.faq-inner {
  max-width: 780px;
  margin-inline: auto
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: var(--sp4)
}

.faq-item {
  border: 1px solid var(--glass-border);
  border-radius: var(--r2);
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  overflow: hidden;
  transition: border-color var(--dur), box-shadow var(--dur);
}

.faq-item:has(details[open]) {
  border-color: rgba(51, 175, 127, .4);
  box-shadow: 0 12px 40px rgba(0, 0, 0, .3)
}

.faq-item details summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--sp6) var(--sp8);
  cursor: none;
  font-weight: 700;
  font-size: var(--lg);
  list-style: none;
  gap: var(--sp4);
  user-select: none;
  transition: color var(--dur);
}

.faq-item details summary::-webkit-details-marker {
  display: none
}

.faq-item details summary::after {
  content: '+';
  flex-shrink: 0;
  font-size: 1.4rem;
  color: var(--emerald);
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(51, 175, 127, .3);
  border-radius: 8px;
  background: var(--emerald-dim);
  transition: transform var(--dur) var(--ease);
  line-height: 1;
}

.faq-item details[open] summary::after {
  transform: rotate(45deg)
}

.faq-item details summary:hover {
  color: var(--emerald)
}

.faq-answer {
  padding: 0 var(--sp8) var(--sp6);
  color: var(--g400);
  font-weight: 300;
  line-height: 1.8;
  border-top: 1px solid var(--glass-border);
  padding-top: var(--sp5);
}

.faq-answer strong {
  color: var(--white);
  font-weight: 700
}

/* ─────────────────────────────
   FORMULÁRIO
   ───────────────────────────── */
.form-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp16);
  align-items: start
}

.form-copy h2 {
  font-size: var(--3xl);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -.035em;
  margin-bottom: var(--sp5);
  background: linear-gradient(140deg, #fff 55%, rgba(51, 175, 127, .85));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.form-copy p {
  color: var(--g400);
  font-size: var(--lg);
  font-weight: 300;
  margin-bottom: var(--sp8)
}

.form-copy strong {
  color: var(--white);
  font-weight: 700
}

.form-promises {
  display: flex;
  flex-direction: column;
  gap: var(--sp4)
}

.form-promises li {
  display: flex;
  align-items: center;
  gap: var(--sp3);
  color: var(--emerald);
  font-weight: 600;
  font-size: var(--base)
}

.form-promises svg {
  flex-shrink: 0
}

.form-box {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--r3);
  padding: var(--sp10);
  position: relative;
  overflow: hidden;
  box-shadow: 0 24px 72px rgba(0, 0, 0, .4);
}

.form-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(255, 255, 255, .05), transparent 50%);
  pointer-events: none
}

.form-box::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--emerald), rgba(51, 175, 127, .15))
}

.lead-form {
  display: flex;
  flex-direction: column;
  gap: var(--sp5);
  position: relative
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp5)
}

@media(min-width:576px) {
  .form-row {
    grid-template-columns: 1fr 1fr
  }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--sp2)
}

.form-group label {
  font-size: var(--sm);
  font-weight: 600;
  color: var(--g400);
  letter-spacing: .02em
}

.form-group label span {
  color: var(--emerald)
}

.form-group input,
.form-group select {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: var(--r);
  color: var(--white);
  font-family: var(--font);
  font-size: var(--base);
  padding: .9rem 1rem;
  transition: border-color var(--dur), box-shadow var(--dur), background var(--dur);
  width: 100%;
}

.form-group input::placeholder {
  color: var(--g600)
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--emerald);
  box-shadow: 0 0 0 3px rgba(51, 175, 127, .15);
  background: rgba(51, 175, 127, .04);
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%238896B0' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right .75rem center;
  padding-right: 2.5rem;
  cursor: none;
}

.form-group select option {
  background: var(--navy)
}

.form-privacy {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: var(--xs);
  color: var(--g600);
  margin-top: var(--sp2)
}

@media(min-width:1024px) {
  .form-inner {
    grid-template-columns: 1fr 1.25fr
  }
}

/* ─────────────────────────────
   FOOTER — 3 colunas inovadorAs
   ───────────────────────────── */
.site-footer {
  border-top: 1px solid var(--glass-border);
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-deep) 100%);
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(51, 175, 127, .28), transparent);
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp12);
  padding-block: var(--sp16) var(--sp12);
}

@media(min-width:768px) {
  .footer-top {
    grid-template-columns: 1.6fr 1fr
  }
}

@media(min-width:1024px) {
  .footer-top {
    grid-template-columns: 2fr 1fr 1.7fr;
    gap: var(--sp10)
  }
}

/* Brand */
.footer-brand .logo img {
  height: 28px;
  width: auto;
  margin-bottom: var(--sp5)
}

.footer-desc {
  color: var(--g400);
  font-weight: 300;
  line-height: 1.75;
  font-size: var(--sm);
  max-width: 360px;
  margin-bottom: var(--sp6);
}

.footer-social-row {
  display: flex;
  gap: var(--sp3);
  flex-wrap: wrap
}

.footer-social-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 14px;
  border: 1px solid var(--glass-border);
  border-radius: 50px;
  background: rgba(255, 255, 255, .03);
  backdrop-filter: blur(8px);
  font-size: var(--xs);
  font-weight: 600;
  color: var(--g400);
  transition: all var(--dur);
}

.footer-social-pill:hover {
  border-color: rgba(51, 175, 127, .4);
  color: var(--emerald)
}

/* Pages grid */
.footer-section-label {
  font-size: var(--xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--g400);
  margin-bottom: var(--sp5);
}

.footer-links-grid {
  display: flex;
  flex-direction: column;
  gap: var(--sp3);
}

.footer-links-grid a {
  font-size: var(--sm);
  color: var(--g600);
  transition: color var(--dur);
  position: relative;
  padding-left: 13px;
}

.footer-links-grid a::before {
  content: '→';
  position: absolute;
  left: 0;
  color: rgba(51, 175, 127, .3);
  font-size: 10px;
  transition: color var(--dur), transform var(--dur);
}

.footer-links-grid a:hover {
  color: var(--emerald)
}

.footer-links-grid a:hover::before {
  color: var(--emerald);
  transform: translateX(2px)
}

/* CTA Card */
.footer-cta-card {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--r3);
  padding: var(--sp8);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--sp4);
}

.footer-cta-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--emerald), rgba(51, 175, 127, .1));
}

.footer-cta-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(255, 255, 255, .05), transparent 50%);
  pointer-events: none;
}

.footer-cta-eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: var(--xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--emerald);
}

.footer-cta-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--emerald);
  animation: live-pulse 2s ease-in-out infinite;
  flex-shrink: 0;
}

.footer-cta-title {
  font-size: var(--2xl);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -.02em;
}

.footer-email-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: var(--sm);
  color: var(--g400);
  transition: color var(--dur);
  border: 1px solid var(--glass-border);
  border-radius: var(--r);
  padding: var(--sp3) var(--sp4);
  background: rgba(255, 255, 255, .03);
}

.footer-email-link:hover {
  color: var(--emerald);
  border-color: rgba(51, 175, 127, .3)
}

.footer-cta-btn {
  width: 100%;
  justify-content: center;
  position: relative;
  z-index: 1
}

/* Bottom bar */
.footer-bottom {
  border-top: 1px solid var(--glass-border);
  padding-block: var(--sp6)
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--sp4);
}

.footer-copy {
  font-size: var(--xs);
  color: var(--g600)
}

.footer-legal {
  display: flex;
  gap: var(--sp5)
}

.footer-legal a {
  font-size: var(--xs);
  color: var(--g600);
  transition: color var(--dur)
}

.footer-legal a:hover {
  color: var(--emerald)
}

.footer-made {
  font-size: var(--xs);
  color: rgba(51, 175, 127, .35);
  font-style: italic
}

/* ─────────────────────────────
   PAGE HERO — páginas internas
   ───────────────────────────── */
.page-hero {
  padding-top: 130px;
  padding-bottom: var(--sp20);
  display: flex;
  align-items: center;
  min-height: 55vh;
  text-align: center;
  background: radial-gradient(ellipse 70% 60% at 50% 10%, rgba(51, 175, 127, .09), transparent 70%);
  border-bottom: 1px solid var(--glass-border);
}

.page-hero-inner {
  max-width: 680px;
  margin-inline: auto
}

.page-hero-inner h1 {
  font-size: var(--3xl);
  font-weight: 900;
  letter-spacing: -.03em;
  margin-block: var(--sp3) var(--sp5);
  background: linear-gradient(140deg, #fff 55%, rgba(51, 175, 127, .85));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.page-hero-inner>p {
  color: var(--g400);
  font-size: var(--xl);
  font-weight: 300;
  margin-bottom: var(--sp8);
  line-height: 1.75
}

.page-coming-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px dashed rgba(51, 175, 127, .3);
  border-radius: var(--r2);
  padding: var(--sp3) var(--sp5);
  color: var(--g400);
  font-size: var(--sm);
  margin-bottom: var(--sp8);
}

/* ─────────────────────────────
   SCROLL ANIMATIONS
   ───────────────────────────── */
@media(prefers-reduced-motion:no-preference) {

  .pain-card,
  .pillar-card,
  .qual-item,
  .faq-item {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .55s var(--ease), transform .55s var(--ease)
  }

  .pain-card.is-visible,
  .pillar-card.is-visible,
  .qual-item.is-visible,
  .faq-item.is-visible {
    opacity: 1;
    transform: none
  }

  .pain-card:nth-child(2),
  .pillar-card:nth-child(2),
  .qual-item:nth-child(2) {
    transition-delay: .1s
  }

  .pain-card:nth-child(3),
  .pillar-card:nth-child(3),
  .qual-item:nth-child(3) {
    transition-delay: .2s
  }

  .ps-card {
    opacity: 0;
    transform: translateY(30px) scale(.97);
    animation-fill-mode: forwards
  }

  .ps-card.is-visible {
    opacity: 1;
    transform: none;
    animation: float 6s ease-in-out infinite
  }
}

/* ─────────────────────────────
   LEGAL PAGES
   ───────────────────────────── */
.legal-inner {
  max-width: 780px;
  margin-inline: auto
}

.legal-inner h2 {
  font-size: var(--xl);
  font-weight: 800;
  margin-top: var(--sp10);
  margin-bottom: var(--sp3);
  letter-spacing: -.01em
}

.legal-inner p {
  color: var(--g400);
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: var(--sp4)
}

.legal-inner a {
  color: var(--emerald);
  text-decoration: underline;
  text-underline-offset: 3px
}

.legal-inner a:hover {
  color: #fff
}

.legal-inner h3 {
  font-size: var(--lg);
  font-weight: 700;
  margin-top: var(--sp8);
  margin-bottom: var(--sp3);
  letter-spacing: -.01em;
  color: var(--g200)
}

.legal-inner ul {
  margin-bottom: var(--sp4);
  padding-left: var(--sp6)
}

.legal-inner ul li {
  color: var(--g400);
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: var(--sp2)
}

.legal-divider {
  border: none;
  border-top: 1px solid var(--glass-border);
  margin-block: var(--sp12)
}

/* ─────────────────────────────
   SCROLLBAR CUSTOMIZADA (VERDE)
   ───────────────────────────── */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: var(--navy-deep);
}

::-webkit-scrollbar-thumb {
  background: var(--emerald);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--emerald-h);
}

/* ─────────────────────────────
   WHATSAPP FLOAT (FUTURISTA)
   ───────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--emerald);
  border: 1px solid rgba(51, 175, 127, 0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  box-shadow: 0 0 20px rgba(51, 175, 127, 0.2);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  overflow: hidden;
}

.whatsapp-float::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(51, 175, 127, 0.2), transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.whatsapp-float-pulse {
  position: absolute;
  inset: -10px;
  border: 1px solid rgba(51, 175, 127, 0.6);
  border-radius: 50%;
  animation: pulse-ring 2.5s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
  pointer-events: none;
}

@keyframes pulse-ring {
  0% {
    transform: scale(0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}

.whatsapp-float:hover {
  transform: translateY(-5px) scale(1.05);
  color: #fff;
  border-color: var(--emerald);
  box-shadow: 0 0 40px rgba(51, 175, 127, 0.6), 0 10px 20px rgba(0, 0, 0, 0.4);
  background: rgba(51, 175, 127, 0.15);
}

.whatsapp-float:hover::before {
  opacity: 1;
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
  position: relative;
  z-index: 2;
  transition: transform 0.3s ease;
}

.whatsapp-float:hover svg {
  transform: scale(1.1) rotate(5deg);
}

@media(max-width: 768px) {
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
  }

  .whatsapp-float svg {
    width: 24px;
    height: 24px;
  }
}

.whatsapp-online-dot {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 10px;
  height: 10px;
  background: #25D366; /* WhatsApp bright green */
  border-radius: 50%;
  border: 2px solid var(--navy-deep);
  z-index: 3;
  animation: online-blink 2s ease-in-out infinite;
}

@keyframes online-blink {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.8); }
}

/* ─────────────────────────────
   GOOGLE ADS PAGE COMPONENTS
   ───────────────────────────── */

/* Hero Typography Massive */
.hero-massive-title {
  font-size: clamp(2.5rem, 8vw, 5.5rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.05em;
  margin-bottom: var(--sp6);
}

.hero-massive-subtitle {
  font-size: clamp(1.1rem, 3vw, 1.4rem);
  font-weight: 300;
  color: var(--g400);
  max-width: 800px;
  line-height: 1.6;
  margin-bottom: var(--sp8);
}

/* Glass Hard (Tech-Brutalism) */
.glass-hard {
  background: rgba(17, 24, 42, 0.4);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  padding: var(--sp8);
  transition: all 0.3s ease;
}

.glass-hard:hover {
  border-color: rgba(51, 175, 127, 0.3);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  transform: translateY(-4px);
}

/* Problem Grid */
.problem-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp6);
  margin-top: var(--sp10);
}
@media(min-width: 1024px) {
  .problem-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.problem-icon {
  color: var(--emerald);
  margin-bottom: var(--sp4);
}

/* Solution Timeline */
.timeline-wrap {
  display: flex;
  flex-direction: column;
  gap: var(--sp8);
  margin-top: var(--sp10);
  position: relative;
}

@media(min-width: 768px) {
  .timeline-wrap::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 24px;
    width: 2px;
    background: linear-gradient(to bottom, rgba(51, 175, 127, 0.8), rgba(51, 175, 127, 0.1));
  }
}

.timeline-step {
  display: flex;
  flex-direction: column;
  gap: var(--sp4);
  position: relative;
  z-index: 1;
}

@media(min-width: 768px) {
  .timeline-step {
    flex-direction: row;
    gap: var(--sp6);
  }
}

.timeline-icon-wrapper {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--navy-deep);
  border: 2px solid var(--emerald);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--emerald);
  box-shadow: 0 0 15px rgba(51, 175, 127, 0.3);
}

.timeline-content h3 {
  font-size: var(--xl);
  font-weight: 700;
  margin-bottom: var(--sp2);
}

.timeline-content p {
  color: var(--g400);
  line-height: 1.7;
}

/* Compare Table Brutalist */
.compare-container {
  width: 100%;
  overflow-x: auto;
  margin-top: var(--sp10);
  padding-bottom: var(--sp4);
  scroll-snap-type: x mandatory;
}

.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-width: 600px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  overflow: hidden;
}

.compare-header {
  padding: var(--sp6);
  font-weight: 800;
  font-size: var(--lg);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.compare-header.them {
  background: rgba(255, 255, 255, 0.02);
  color: var(--g400);
}

.compare-header.us {
  background: rgba(51, 175, 127, 0.1);
  color: var(--emerald);
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.compare-row {
  display: contents;
}

.compare-cell {
  padding: var(--sp5) var(--sp6);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.compare-cell.them {
  background: rgba(255, 255, 255, 0.01);
  color: var(--g400);
}

.compare-cell.us {
  background: rgba(51, 175, 127, 0.05);
  color: #fff;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  font-weight: 500;
}

/* Checklist Qualificação */
.qual-checklist {
  margin-top: var(--sp8);
  display: flex;
  flex-direction: column;
  gap: var(--sp4);
}

.qual-check-item {
  display: flex;
  align-items: flex-start;
  gap: var(--sp4);
  background: rgba(255, 255, 255, 0.02);
  padding: var(--sp5);
  border-radius: 6px;
  border-left: 2px solid var(--emerald);
}

.qual-check-item svg {
  color: var(--emerald);
  flex-shrink: 0;
  margin-top: 2px;
}

/* Scroll Reveal Animations */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─────────────────────────────
   HEADER — dropdown "Serviços" e estado ativo do menu
   (movido de includes/nav.php para permitir cache do navegador)
   ───────────────────────────── */
.dropdown { position: relative; }
.dropdown > a svg { transition: transform 0.3s var(--ease); }
.dropdown:hover > a svg { transform: rotate(180deg); }
.dropdown-menu {
  position: absolute; top: calc(100% + 10px); left: 50%; transform: translate(-50%, 8px);
  background: var(--navy-deep);
  border: 1px solid rgba(255,255,255,0.08); border-top: 2px solid var(--emerald);
  border-radius: 12px;
  padding: 20px 6px; opacity: 0; visibility: hidden;
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease), visibility 0.25s;
  z-index: 100;
  box-shadow: 0 20px 48px rgba(0,0,0,0.5);
  display: flex; flex-direction: row; align-items: flex-start; gap: 4px;
}
.dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translate(-50%, 0); }
.dropdown-col { flex: 0 0 auto; min-width: 168px; padding: 0 14px; }
.dropdown-col + .dropdown-col { border-left: 1px solid rgba(255,255,255,0.07); }
.dropdown-col ul {
  display: block; flex-direction: unset; align-items: unset; gap: unset;
  list-style: none; margin: 0; padding: 0;
}
.dropdown-col li { display: block; margin: 0; width: 100%; line-height: 1.2; }
.dropdown-group-label {
  padding: 0 8px 10px; margin-bottom: 6px; font-size: 0.68rem; font-weight: 700; letter-spacing: 1.2px;
  text-transform: uppercase; color: var(--g600); line-height: 1.2;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.dropdown-menu a {
  display: flex; align-items: center; gap: 9px; line-height: 1.3;
  padding: 9px 8px; color: var(--g400); font-size: 0.88rem; font-weight: 500;
  border-radius: 7px;
  transition: background 0.25s, color 0.25s; white-space: nowrap; text-align: left;
}
.dropdown-menu a::after { content: none; }
.dropdown-menu a svg { flex-shrink: 0; opacity: 0.75; transition: opacity 0.25s; }
.nav-badge-new {
  margin-left: auto; padding: 2px 7px; border-radius: 10px; font-size: 0.62rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.4px; background: rgba(51, 175, 127, 0.15); color: var(--emerald);
  line-height: 1.4;
}
.main-nav .nav-badge-new { margin-left: 6px; }
.dropdown-menu a:hover, .dropdown-menu a.is-active { background: rgba(255,255,255,0.05); color: #fff; }
.dropdown-menu a:hover svg, .dropdown-menu a.is-active svg { opacity: 1; color: var(--emerald); }

.main-nav a.is-active { color: var(--white); }
.main-nav a.is-active::after { transform: scaleX(1); }
.mobile-nav a.is-active { color: var(--emerald); }

/* ─────────────────────────────
   NEW MOCKUP HERO & REFINEMENTS
   ───────────────────────────── */
.radial-glow-bg {
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 80vw;
  height: 80vw;
  background: radial-gradient(circle, rgba(51, 175, 127, 0.08) 0%, rgba(17, 24, 42, 0) 70%);
  z-index: 0;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp10);
  align-items: center;
  position: relative;
  z-index: 1;
}
@media(max-width: 1023px) {
  .hero-copy {
    text-align: center;
  }
  .hero-subtitle {
    margin-inline: auto;
  }
  .hero-ctas {
    justify-content: center;
  }
}
@media(min-width: 1024px) {
  .hero-grid { grid-template-columns: 1.1fr 0.9fr; }
}

.mockup-container {
  position: relative;
  width: 100%;
}

.glass-mockup {
  background: rgba(20, 28, 48, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4), 0 0 0 1px rgba(51, 175, 127, 0.2);
  overflow: hidden;
  position: relative;
}

/* Mockup Header */
.mockup-header {
  background: rgba(0,0,0,0.3);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.mockup-dots {
  display: flex;
  gap: 6px;
  margin-right: 16px;
}
.mockup-dots span {
  width: 10px; height: 10px; border-radius: 50%;
}
.mockup-dots span:nth-child(1) { background: #ff5f56; }
.mockup-dots span:nth-child(2) { background: #ffbd2e; }
.mockup-dots span:nth-child(3) { background: #27c93f; }
.mockup-title {
  font-size: 12px; color: var(--g400); font-family: monospace;
}

/* Mockup Body */
.mockup-body {
  padding: var(--sp6);
}

.mockup-circles {
  display: flex;
  justify-content: space-between;
  margin-bottom: var(--sp8);
  gap: var(--sp4);
}
.m-circle {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
.m-circle svg {
  width: 60px; height: 60px; transform: rotate(-90deg);
}
.m-circle .circle-bg {
  fill: none; stroke: rgba(255,255,255,0.05); stroke-width: 3;
}
.m-circle .circle-fill {
  fill: none; stroke: var(--emerald); stroke-width: 3; stroke-linecap: round;
}
.m-circle span {
  position: absolute; top: 22px; left: 50%; transform: translate(-50%, -50%);
  font-size: 16px; font-weight: 800; color: #fff;
}
.m-circle small {
  margin-top: 10px; font-size: 11px; color: var(--g400); text-align: center; font-weight: 600;
}

.mockup-bars {
  display: flex;
  flex-direction: column;
  gap: var(--sp4);
}
.m-bar-group { width: 100%; }
.m-bar-labels {
  display: flex; justify-content: space-between; font-size: 12px; margin-bottom: 6px; font-weight: 500;
}
.m-bar-track {
  width: 100%; height: 6px; background: rgba(255,255,255,0.1); border-radius: 4px; overflow: hidden;
}
.m-bar-fill {
  height: 100%; background: var(--emerald); border-radius: 4px; box-shadow: 0 0 8px rgba(51,175,127,0.5);
}

/* Floating Badges */
.mockup-badge {
  position: absolute;
  background: rgba(17, 24, 42, 0.8);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(51, 175, 127, 0.4);
  color: #fff;
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  z-index: 10;
  animation: float-anim 4s ease-in-out infinite;
}
.badge-cpc { top: -15px; right: -20px; animation-delay: 0s; }
.badge-server { bottom: 40px; left: -30px; animation-delay: 1s; border-color: rgba(255,255,255,0.2); }
.badge-data { bottom: -15px; right: 20px; animation-delay: 2s; }

@keyframes float-anim {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@media(max-width: 768px) {
  .mockup-badge { display: none; }
}

/* Glow Icons */
.icon-glow {
  filter: drop-shadow(0 0 8px rgba(51, 175, 127, 0.6));
}

.mockup-stat-grid {
  grid-template-columns: 1fr 1fr;
}

/* FAQ Accordion */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: var(--sp4);
}
.faq-item {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 6px;
  overflow: hidden;
  transition: background 0.3s ease;
}
.faq-item:hover {
  background: rgba(255, 255, 255, 0.04);
}
.faq-item summary {
  padding: var(--sp5) var(--sp6);
  font-weight: 700;
  font-size: var(--lg);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item summary::after {
  content: '+';
  color: var(--emerald);
  font-size: 24px;
  transition: transform 0.3s ease;
}
.faq-item[open] summary::after {
  transform: rotate(45deg);
}
.faq-content {
  padding: 0 var(--sp6) var(--sp6) var(--sp6);
  color: var(--g400);
  line-height: 1.6;
}

/* ─────────────────────────────
   META ADS - REDESIGN VISUALS
   ───────────────────────────── */

/* WIDE MOCKUP */
.meta-connection-wide {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(20, 28, 48, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4), 0 0 0 1px rgba(51, 175, 127, 0.1);
  padding: 40px 60px;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}

.node-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  z-index: 2;
}

.node-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--navy-deep);
  border: 2px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.server-box .node-icon {
  box-shadow: 0 0 24px rgba(51, 175, 127, 0.2);
  border-color: rgba(51, 175, 127, 0.3);
}

.meta-box .node-icon {
  box-shadow: 0 0 24px rgba(6, 104, 225, 0.2);
  border-color: rgba(6, 104, 225, 0.3);
}

.node-title {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}

.node-sub {
  display: block;
  font-size: 12px;
  color: var(--g400);
}

.data-pipe {
  flex-grow: 1;
  height: 2px;
  background: rgba(255,255,255,0.1);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 24px;
  margin-top: -36px; /* align with icons */
}

.pipe-pulse {
  position: absolute;
  top: -2px;
  left: 0;
  width: 40px;
  height: 6px;
  background: var(--emerald);
  border-radius: 4px;
  box-shadow: 0 0 12px var(--emerald);
  animation: pipe-flow 1.5s linear infinite;
}

.pipe-badge {
  position: absolute;
  top: -32px;
  background: var(--navy-deep);
  border: 1px solid rgba(51, 175, 127, 0.4);
  color: var(--emerald);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  letter-spacing: 1px;
}

@keyframes pipe-flow {
  0% { left: 0%; opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { left: calc(100% - 40px); opacity: 0; }
}

@media(max-width: 768px) {
  .meta-connection-wide { flex-direction: column; padding: 30px; gap: 40px; align-items: center; }
  .data-pipe { width: 2px; height: 60px; margin: 0 auto; top: 0; margin-top: 0; display: flex; justify-content: center; position: relative; }
  .pipe-pulse { width: 6px; height: 30px; top: 0; left: -2px; animation: pipe-flow-vertical 1.5s linear infinite; }
  .pipe-badge { display: none; }
  
  @keyframes pipe-flow-vertical {
    0% { top: 0%; opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { top: calc(100% - 30px); opacity: 0; }
  }
}

/* SPLIT LAYOUT */
.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp16);
  align-items: start;
}

.list-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 32px;
  margin-bottom: 24px;
}

.list-card .icon-wrapper {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  border-radius: 12px;
  background: rgba(51, 175, 127, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--emerald);
}

.list-card h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.list-card p {
  color: var(--g400);
  line-height: 1.6;
}

@media(max-width: 992px) {
  .split-layout { grid-template-columns: 1fr; gap: var(--sp10); }
  .sticky-content { position: static !important; margin-bottom: var(--sp8); }
}

/* ZIGZAG LAYOUT */
.zigzag-layout {
  display: flex;
  flex-direction: column;
  gap: var(--sp20);
}

.zigzag-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp12);
  align-items: center;
}

.zigzag-row.reverse {
  direction: rtl;
}

.zigzag-row.reverse > * {
  direction: ltr;
}

.step-badge {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 4px;
  color: var(--g400);
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

@media(max-width: 992px) {
  .zigzag-row { grid-template-columns: 1fr; gap: var(--sp8); }
  .zigzag-row.reverse { direction: ltr; }
}

/* ─────────────────────────────
   MOBILE TWEAKS (Header, Menu & Footer)
   ───────────────────────────── */
@media(max-width: 1023px) {
  .logo img {
    flex-shrink: 0;
  }
  .hide-mobile {
    display: none !important;
  }
  .mobile-nav ul {
    align-items: center;
    text-align: center;
  }
  .mobile-nav .btn-outline {
    margin-top: var(--sp4);
    margin-inline: auto;
    width: fit-content;
  }
}

@media(max-width: 767px) {
  /* Footer adjustments */
  .footer-top {
    text-align: center;
  }
  .footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .footer-desc {
    margin-inline: auto;
  }
  .footer-social-row {
    justify-content: center;
  }
  .footer-pages {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .footer-links-grid {
    align-items: center;
  }
  .footer-links-grid a::before {
    display: none;
  }
  .footer-links-grid a {
    padding-left: 0;
  }
  .footer-cta-card {
    align-items: center;
    text-align: center;
  }
  .footer-email-link {
    justify-content: center;
  }
  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
    gap: var(--sp4);
  }
  .footer-legal {
    justify-content: center;
  }

  /* Home Hero Float Tags fixes */
  .float-tag--tl {
    right: auto;
    left: -10px;
  }
  .float-tag--br {
    left: auto;
    right: -10px;
  }
  .ps-card {
    padding: var(--sp5);
  }

  /* Home Fale Conosco Form fixes */
  .form-inner {
    gap: var(--sp8);
  }
  .form-box {
    padding: var(--sp5);
  }

  /* Wrap text on full buttons on mobile */
  .btn-full {
    white-space: normal !important;
    height: auto;
    padding-block: 15px;
    line-height: 1.4;
  }

  /* Reduce Hero Top Padding on inner pages */
  .page-hero {
    padding-top: 100px !important;
    padding-bottom: var(--sp6) !important;
  }

  /* Fix absolute badges on Google Ads / Meta Ads hero */
  .mockup-badge {
    position: static !important;
    display: inline-block !important;
    margin: 5px !important;
  }
  .mockup-container {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  /* Center hero copy on mobile */
  .hero-copy {
    text-align: center;
  }
  .hero-subtitle {
    margin-inline: auto;
  }
  .hero-ctas {
    justify-content: center;
  }

  /* Prevent hero CTA buttons from overflowing on mobile */
  .page-hero .btn-lg {
    display: flex;
    width: 100%;
    justify-content: center;
    box-sizing: border-box;
  }

  /* Fix comparison tables (Mercado vs Code Ads) - Stack vertically */
  .compare-container {
    overflow-x: hidden;
  }
  .compare-grid {
    display: flex;
    flex-direction: column;
    min-width: 0;
    border: none;
  }
  .compare-row {
    display: flex;
    flex-direction: column;
    margin-bottom: var(--sp6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    overflow: hidden;
  }
  .compare-header {
    display: none;
  }
  .compare-cell {
    border-bottom: none;
  }
  .compare-cell.them {
    background: rgba(255, 255, 255, 0.02);
  }
  .compare-cell.us {
    background: rgba(51, 175, 127, 0.1);
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
  .compare-cell.them::before {
    content: 'Mercado Comum';
    font-weight: 700;
    color: var(--g400);
    display: block;
    margin-bottom: 8px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  .compare-cell.us::before {
    content: 'Code Ads';
    font-weight: 700;
    color: var(--emerald);
    display: block;
    margin-bottom: 8px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
  }

  /* Timeline mobile fixes */
  .timeline-wrap::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 20px;
    width: 2px;
    background: linear-gradient(to bottom, rgba(51, 175, 127, 0.8), rgba(51, 175, 127, 0.1));
  }
  .timeline-step {
    flex-direction: row;
    align-items: flex-start;
    gap: var(--sp4);
  }
  .timeline-icon-wrapper {
    width: 40px;
    height: 40px;
    margin-top: 5px;
  }

  /* Mockup Stat Grid */
  .mockup-stat-grid {
    grid-template-columns: 1fr;
  }

  /* Insight Single large CTA button reduction */
  .insight-cta-btn {
    font-size: 1rem !important;
    padding: 12px 24px !important;
    width: 100% !important;
    max-width: 300px;
    margin: 0 auto;
  }
}