/* ============================================
   Político IA — Landing Site
   Paleta: variações de azul (sem amarelo)
   ============================================ */

:root {
  --bg-deep:        #050B1F;
  --bg-deep-2:      #0A1A3A;
  --bg-mid:         #0E2348;
  --bg-card:        #0F2854;
  --line:           rgba(91, 145, 220, 0.18);
  --line-strong:    rgba(91, 145, 220, 0.35);

  /* Light section (features) */
  --bg-light:       #F4F7FC;
  --bg-light-card:  #FFFFFF;
  --line-light:     rgba(15, 40, 84, 0.10);
  --text-dark:      #0A1A3A;
  --text-dark-soft: #4A5B85;
  --text-dark-mute: #7B8CB0;

  --brand:          #3B82C4;
  --brand-2:        #1E88E5;
  --brand-3:        #2563EB;
  --brand-light:    #5BA3E0;
  --brand-cyan:     #38BDF8;     /* nova accent: ciano elétrico */
  --brand-cyan-2:   #7DD3FC;     /* sky claro */
  --brand-deep:     #0B5DBA;
  --whats:          #25D366;
  --whats-dark:     #1FAE53;
  --danger:         #EF4444;

  --text:           #E8EEFA;
  --text-soft:      #A8B6D6;
  --text-mute:      #6F80A8;

  --radius:         16px;
  --radius-sm:      10px;
  --radius-lg:      24px;

  --shadow-sm:      0 4px 14px rgba(0,0,0,.25);
  --shadow-md:      0 12px 40px rgba(0,0,0,.4);
  --shadow-glow:    0 0 60px rgba(59,130,196,.35);
  --shadow-light:   0 8px 30px rgba(15, 40, 84, 0.08);
  --shadow-light-lg:0 20px 50px rgba(15, 40, 84, 0.12);

  --font-head:      'Montserrat', system-ui, -apple-system, sans-serif;
  --font-body:      'Montserrat', system-ui, -apple-system, sans-serif;
}

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

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

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

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font-family: inherit; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================
   NAVBAR (incorporada no Hero)
   ============================================ */
.nav {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 10;
  background: transparent;
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 22px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo img {
  height: 38px;
  width: auto;
  transition: opacity .2s;
}
.nav-logo:hover img { opacity: .85; }

.nav-links {
  display: flex;
  gap: 32px;
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 14px;
  color: var(--text-soft);
}

.nav-links a {
  position: relative;
  padding: 6px 2px;
  transition: color .2s;
}
.nav-links a:hover { color: var(--text); }
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--brand-cyan), var(--brand));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}
.nav-links a:hover::after { transform: scaleX(1); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}
.nav-login {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 14px;
  color: var(--text-soft);
  padding: 6px 4px;
  transition: color .2s;
}
.nav-login:hover { color: var(--brand-cyan-2); }
.nav-login svg {
  opacity: .7;
  transition: transform .2s, opacity .2s;
}
.nav-login:hover svg {
  opacity: 1;
  transform: translate(2px, -2px);
}

.nav-cta {
  background: linear-gradient(135deg, var(--brand-cyan) 0%, var(--brand-2) 100%);
  color: #fff;
  padding: 10px 20px;
  border-radius: 100px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 14px;
  box-shadow: 0 4px 20px rgba(56, 189, 248, .35);
  transition: transform .2s, box-shadow .2s;
}
.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(56, 189, 248, .55);
}

@media (max-width: 540px) {
  .nav-login { display: none; }
}

@media (max-width: 880px) {
  .nav-links { display: none; }
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 140px 24px 80px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(30,136,229,.22) 0%, transparent 55%),
    radial-gradient(ellipse at 85% 70%, rgba(56,189,248,.10) 0%, transparent 55%),
    linear-gradient(180deg, var(--bg-deep) 0%, var(--bg-deep-2) 100%);
}

#hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 1;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}
.hero-glow--a {
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(59,130,196,.4), transparent 70%);
  top: -120px; left: -120px;
  animation: floatA 18s ease-in-out infinite;
}
.hero-glow--b {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(56,189,248,.18), transparent 70%);
  bottom: -150px; right: -100px;
  animation: floatB 22s ease-in-out infinite;
}
@keyframes floatA {
  0%, 100% { transform: translate(0,0); }
  50% { transform: translate(60px, 40px); }
}
@keyframes floatB {
  0%, 100% { transform: translate(0,0); }
  50% { transform: translate(-50px, -30px); }
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  text-align: center;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  background: rgba(56, 189, 248, .10);
  border: 1px solid rgba(56, 189, 248, .35);
  border-radius: 100px;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 500;
  color: var(--brand-cyan-2);
  margin-bottom: 28px;
  animation: fadeUp .8s ease both;
}
.hero-pill-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--brand-cyan);
  box-shadow: 0 0 12px var(--brand-cyan);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .6; transform: scale(1.3); }
}

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(36px, 6.5vw, 76px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  animation: fadeUp .9s ease .1s both;
}

.grad-text {
  background: linear-gradient(120deg, var(--brand-cyan-2) 0%, var(--brand-cyan) 40%, var(--brand-light) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% 200%;
  animation: gradShift 6s ease-in-out infinite;
}
@keyframes gradShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.hero-sub {
  font-size: clamp(15px, 1.6vw, 19px);
  color: var(--text-soft);
  max-width: 720px;
  margin: 0 auto 40px;
  animation: fadeUp 1s ease .2s both;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 60px;
  animation: fadeUp 1.1s ease .3s both;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
  padding-top: 40px;
  border-top: 1px solid var(--line);
  animation: fadeUp 1.2s ease .4s both;
}
.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hero-stat strong {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.01em;
}
.hero-stat span {
  font-size: 13px;
  color: var(--text-mute);
}

@media (max-width: 640px) {
  .hero-stats { grid-template-columns: 1fr; gap: 18px; }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 100px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  border: none;
  transition: transform .2s, box-shadow .2s, background .2s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: linear-gradient(135deg, var(--brand-cyan) 0%, var(--brand-2) 100%);
  color: #fff;
  box-shadow: 0 8px 30px rgba(56, 189, 248, .4);
}
.btn-primary:hover { box-shadow: 0 12px 36px rgba(56, 189, 248, .55); }

.btn-ghost {
  background: rgba(255,255,255,.06);
  color: var(--text);
  border: 1px solid var(--line-strong);
}
.btn-ghost:hover {
  background: rgba(255,255,255,.1);
  border-color: var(--brand-cyan);
}

.btn-whats {
  background: linear-gradient(135deg, var(--whats) 0%, var(--whats-dark) 100%);
  color: #fff;
  box-shadow: 0 8px 30px rgba(37,211,102,.4);
}
.btn-whats:hover { box-shadow: 0 12px 36px rgba(37,211,102,.55); }

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

/* ============================================
   SECTION HEAD (shared)
   ============================================ */
.kicker {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand-light);
  padding: 6px 14px;
  background: rgba(59,130,196,.1);
  border: 1px solid rgba(59,130,196,.25);
  border-radius: 100px;
  margin-bottom: 18px;
}
.kicker-green {
  color: var(--whats);
  background: rgba(37,211,102,.1);
  border-color: rgba(37,211,102,.3);
}
/* substituiu o kicker-yellow */
.kicker-yellow {
  color: var(--brand-cyan-2);
  background: rgba(56,189,248,.10);
  border-color: rgba(56,189,248,.35);
}

.section-head {
  text-align: center;
  margin-bottom: 60px;
}
.section-head h2 {
  font-family: var(--font-head);
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}
.section-head p {
  color: var(--text-soft);
  font-size: 17px;
  max-width: 600px;
  margin: 0 auto;
}

/* ============================================
   FEATURES — fundo CLARO off-white
   ============================================ */
.features {
  padding: 120px 24px;
  background: var(--bg-light);
  color: var(--text-dark);
  position: relative;
  /* curve top join with hero */
  border-top: 1px solid rgba(15, 40, 84, 0.06);
}

.features .section-head h2 { color: var(--text-dark); }
.features .section-head p { color: var(--text-dark-soft); }

.features .kicker {
  color: var(--brand-2);
  background: rgba(30,136,229,.08);
  border-color: rgba(30,136,229,.22);
}

.feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.feat-card {
  background: var(--bg-light-card);
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: transform .3s, border-color .3s, box-shadow .3s;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-light);
}
.feat-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--brand-cyan), var(--brand), transparent);
  opacity: 0;
  transition: opacity .3s;
}
.feat-card:hover {
  transform: translateY(-4px);
  border-color: rgba(30, 136, 229, 0.35);
  box-shadow: var(--shadow-light-lg);
}
.feat-card:hover::before { opacity: 1; }

.feat-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(56,189,248,.18), rgba(30,136,229,.08));
  border: 1px solid rgba(30,136,229,.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-2);
  margin-bottom: 20px;
}
.feat-icon svg { width: 26px; height: 26px; }

.feat-card h3 {
  font-family: var(--font-head);
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-dark);
}
.feat-card p {
  color: var(--text-dark-soft);
  font-size: 14.5px;
  line-height: 1.6;
}

@media (max-width: 900px) { .feat-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .feat-grid { grid-template-columns: 1fr; } }

/* ============================================
   WHATSAPP SECTION
   ============================================ */
.whats {
  padding: 120px 24px;
  background:
    radial-gradient(ellipse at 80% 50%, rgba(37,211,102,.08), transparent 60%),
    var(--bg-deep-2);
  position: relative;
  overflow: hidden;
}

.whats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.whats-copy h2 {
  font-family: var(--font-head);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.lead {
  font-size: 17px;
  color: var(--text-soft);
  margin-bottom: 30px;
  line-height: 1.65;
}
.lead strong { color: var(--text); font-weight: 600; }

.whats-list {
  list-style: none;
  margin-bottom: 36px;
}
.whats-list li {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
  color: var(--text-soft);
}
.whats-list li:last-child { border-bottom: none; }
.whats-list strong { color: var(--text); font-weight: 600; }
.whats-check {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--whats), var(--whats-dark));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  margin-top: 1px;
}

/* WhatsApp mockup */
.whats-visual { position: relative; }
.whats-mock {
  background: linear-gradient(160deg, #0F2854 0%, #0A1A3A 100%);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md), var(--shadow-glow);
  overflow: hidden;
  position: relative;
}
.whats-mock::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(37,211,102,.05), transparent 50%);
  pointer-events: none;
}
.whats-mock-head {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  border-bottom: 1px solid var(--line);
  background: rgba(0,0,0,.2);
}
.whats-mock-dots { display: flex; gap: 6px; }
.whats-mock-dots span {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,.2);
}
.whats-mock-dots span:nth-child(1) { background: #FF5F57; }
.whats-mock-dots span:nth-child(2) { background: #FEBC2E; }
.whats-mock-dots span:nth-child(3) { background: var(--whats); }
.whats-mock-title {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-soft);
}

.whats-mock-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  z-index: 1;
  height: 380px;
  overflow: hidden;
  scroll-behavior: smooth;
  mask-image: linear-gradient(to bottom, transparent 0, #000 30px, #000 calc(100% - 8px), transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0, #000 30px, #000 calc(100% - 8px), transparent 100%);
}

.whats-line { display: flex; flex-direction: column; gap: 6px; }
.whats-line--out { align-items: flex-end; }

.whats-num {
  font-family: var(--font-head);
  font-size: 11px;
  color: var(--text-mute);
  font-weight: 500;
}

.whats-bubble {
  max-width: 88%;
  padding: 12px 16px;
  border-radius: 16px;
  background: rgba(255,255,255,.06);
  border: 1px solid var(--line);
  font-size: 14px;
  line-height: 1.45;
  color: var(--text);
  border-top-left-radius: 4px;
  animation: bubbleIn .6s ease both;
}
.whats-bubble--out {
  background: linear-gradient(135deg, rgba(37,211,102,.18), rgba(31,174,83,.12));
  border-color: rgba(37,211,102,.35);
  border-top-left-radius: 16px;
  border-top-right-radius: 4px;
}
@keyframes bubbleIn {
  from { opacity: 0; transform: translateY(10px) scale(.95); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

/* Typing indicator */
.whats-typing {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 12px 16px;
  border-radius: 16px;
  border-top-left-radius: 4px;
  background: rgba(255,255,255,.06);
  border: 1px solid var(--line);
  animation: bubbleIn .35s ease both;
}
.whats-typing--out {
  background: linear-gradient(135deg, rgba(37,211,102,.18), rgba(31,174,83,.12));
  border-color: rgba(37,211,102,.35);
  border-top-left-radius: 16px;
  border-top-right-radius: 4px;
}
.whats-typing span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--text-soft);
  animation: typingDot 1.2s infinite ease-in-out both;
}
.whats-typing span:nth-child(1) { animation-delay: -.32s; }
.whats-typing span:nth-child(2) { animation-delay: -.16s; }
@keyframes typingDot {
  0%, 80%, 100% { opacity: .3; transform: scale(.8); }
  40% { opacity: 1; transform: scale(1); }
}

/* Items leaving (when chat scrolls) */
.whats-line.is-fading {
  animation: fadeOut .4s ease forwards;
}
@keyframes fadeOut {
  to { opacity: 0; transform: translateY(-8px); height: 0; margin: 0; padding: 0; }
}

.whats-mock-foot {
  padding: 14px 20px;
  border-top: 1px solid var(--line);
  background: rgba(0,0,0,.2);
  position: relative;
  z-index: 1;
}
.whats-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 12px;
  color: var(--text-soft);
}
.whats-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--whats);
  box-shadow: 0 0 8px var(--whats);
  animation: pulse 2s ease infinite;
}

@media (max-width: 900px) {
  .whats-grid { grid-template-columns: 1fr; gap: 50px; }
}

/* ============================================
   CABRITOS SECTION
   ============================================ */
.cabritos {
  padding: 120px 24px;
  position: relative;
  background: var(--bg-deep);
  overflow: hidden;
}
.cabritos-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(56,189,248,.10), transparent 50%),
    radial-gradient(ellipse at 70% 80%, rgba(239,68,68,.05), transparent 50%);
  z-index: 0;
}
.cabritos > .container { position: relative; z-index: 1; }

.cabritos-head {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}
.cabritos-head h2 {
  font-family: var(--font-head);
  font-size: clamp(30px, 4.5vw, 50px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.strike-red {
  position: relative;
  color: var(--brand-cyan-2);
  font-style: italic;
}
.strike-red::after {
  content: "";
  position: absolute;
  left: -4%; right: -4%;
  top: 52%;
  height: 4px;
  background: var(--danger);
  transform: rotate(-3deg);
  border-radius: 4px;
  opacity: .85;
}

.cabritos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 60px;
}

.cabritos-card {
  background: linear-gradient(160deg, var(--bg-card) 0%, var(--bg-mid) 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition: transform .3s, border-color .3s, box-shadow .3s;
}
.cabritos-card:hover {
  transform: translateY(-4px);
  border-color: rgba(56, 189, 248, .4);
  box-shadow: 0 20px 50px rgba(0,0,0,.4);
}

.cabritos-num {
  font-family: var(--font-head);
  font-size: 56px;
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(135deg, var(--brand-cyan-2) 0%, var(--brand) 60%, rgba(91,163,224,.2) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 16px;
  letter-spacing: -0.04em;
}

.cabritos-card h3 {
  font-family: var(--font-head);
  font-size: 19px;
  font-weight: 600;
  margin-bottom: 10px;
}

.cabritos-card p {
  color: var(--text-soft);
  font-size: 14.5px;
  line-height: 1.6;
}

.cabritos-cta {
  display: flex;
  justify-content: center;
}

@media (max-width: 900px) { .cabritos-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .cabritos-grid { grid-template-columns: 1fr; } }

/* ============================================
   AUDIENCE
   ============================================ */
.audience {
  padding: 120px 24px;
  background: var(--bg-deep-2);
}

.aud-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.aud-card {
  background: linear-gradient(160deg, var(--bg-card) 0%, var(--bg-mid) 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px 30px;
  transition: transform .3s, border-color .3s;
}
.aud-card:hover { transform: translateY(-4px); border-color: var(--line-strong); }

.aud-card--accent {
  border-color: rgba(56, 189, 248, .4);
  background:
    radial-gradient(ellipse at top right, rgba(56,189,248,.12), transparent 60%),
    linear-gradient(160deg, var(--bg-card) 0%, var(--bg-mid) 100%);
  box-shadow: 0 20px 50px rgba(56, 189, 248, .08);
}

.aud-tag {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--brand-light);
  padding: 5px 12px;
  background: rgba(59,130,196,.12);
  border-radius: 100px;
  margin-bottom: 18px;
}
.aud-card--accent .aud-tag {
  color: var(--brand-cyan-2);
  background: rgba(56,189,248,.14);
}

.aud-card h3 {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
}

.aud-card p {
  color: var(--text-soft);
  font-size: 15px;
}

@media (max-width: 900px) { .aud-grid { grid-template-columns: 1fr; } }

/* ============================================
   PRICING
   ============================================ */
.pricing {
  padding: 120px 24px;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(56,189,248,.08), transparent 60%),
    var(--bg-deep);
  position: relative;
}

/* Trial banner */
.trial-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  max-width: 560px;
  margin: -30px auto 28px;
  padding: 14px 22px;
  background: linear-gradient(135deg, rgba(37,211,102,.14), rgba(37,211,102,.06));
  border: 1px solid rgba(37,211,102,.4);
  border-radius: 100px;
  font-size: 14.5px;
  color: var(--text-soft);
  text-align: center;
}
.trial-banner strong { color: var(--whats); font-weight: 700; }
.trial-banner-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--whats), var(--whats-dark));
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(37,211,102,.4);
}
@media (max-width: 540px) {
  .trial-banner { font-size: 13px; padding: 12px 18px; gap: 10px; }
}

/* Toggle Mensal/Anual */
.price-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 0 auto 60px;
  flex-wrap: wrap;
}
.price-toggle-label {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-mute);
  transition: color .2s;
}
.price-toggle.is-yearly #lbl-anual,
.price-toggle:not(.is-yearly) #lbl-mensal {
  color: var(--text);
}
.price-switch {
  position: relative;
  width: 52px;
  height: 28px;
  border-radius: 100px;
  background: rgba(91, 145, 220, 0.18);
  border: 1px solid var(--line-strong);
  cursor: pointer;
  transition: background .2s;
  padding: 0;
}
.price-switch-knob {
  position: absolute;
  top: 50%;
  left: 3px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-cyan), var(--brand-2));
  transform: translateY(-50%);
  transition: left .25s ease;
  box-shadow: 0 2px 8px rgba(56,189,248,.5);
}
.price-toggle.is-yearly .price-switch-knob { left: 27px; }
.price-toggle.is-yearly .price-switch { background: rgba(56,189,248,.25); }
.price-toggle-badge {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 600;
  color: var(--whats);
  background: rgba(37,211,102,.10);
  border: 1px solid rgba(37,211,102,.3);
  padding: 4px 10px;
  border-radius: 100px;
}

/* Cards */
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 40px;
}

.price-card {
  background: linear-gradient(180deg, #0E2348 0%, #0A1A3A 100%);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 32px 28px 28px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform .3s, border-color .3s;
}
.price-card:hover { transform: translateY(-4px); border-color: var(--line-strong); }

.price-card--featured {
  border-color: var(--brand-cyan);
  box-shadow: 0 0 0 1px var(--brand-cyan), 0 30px 60px rgba(56,189,248,.18);
  background:
    radial-gradient(ellipse at top, rgba(56,189,248,.10), transparent 60%),
    linear-gradient(180deg, #0E2348 0%, #0A1A3A 100%);
}

/* Tags */
.price-tag {
  display: inline-block;
  align-self: flex-start;
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 100px;
  margin-bottom: 18px;
  letter-spacing: 0.01em;
}
.price-tag--entrada {
  color: var(--whats);
  background: rgba(37,211,102,.12);
  border: 1px solid rgba(37,211,102,.3);
}
.price-tag--featured {
  color: var(--brand-cyan-2);
  background: rgba(56,189,248,.14);
  border: 1px solid rgba(56,189,248,.4);
}
.price-tag--cheaper {
  color: var(--brand-cyan);
  background: transparent;
  border: 1px solid rgba(56,189,248,.4);
}
.price-tag--custom {
  color: #FBCFE8;
  background: rgba(244, 114, 182, 0.10);
  border: 1px solid rgba(244, 114, 182, 0.3);
}
.price-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.price-tags .price-tag { margin-bottom: 0; }

/* Title + desc */
.price-name {
  font-family: var(--font-head);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}
.price-desc {
  color: var(--text-soft);
  font-size: 14.5px;
  line-height: 1.55;
  margin-bottom: 22px;
  min-height: 64px;
}

/* Stats boxes */
.price-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 22px;
}
.price-stat {
  background: rgba(0,0,0,0.25);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px 16px;
}
.price-stat strong {
  display: block;
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 2px;
}
.price-stat span {
  font-size: 12px;
  color: var(--text-mute);
  line-height: 1.3;
  display: block;
}

/* Features list */
.price-feats {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  margin-bottom: 22px;
  flex: 1;
}
.price-feats li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14.5px;
  color: var(--text-soft);
}
.price-check {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(37,211,102,.18);
  color: var(--whats);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
}

/* Price amount */
.price-amount {
  margin-bottom: 22px;
  padding-top: 4px;
}
.price-value {
  display: flex;
  align-items: baseline;
  gap: 4px;
  font-family: var(--font-head);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}
.price-currency {
  font-size: 20px;
  color: var(--text-soft);
  font-weight: 600;
}
.price-number {
  font-size: 44px;
  color: var(--text);
  line-height: 1;
}
.price-value--custom {
  font-size: 22px;
  color: var(--text);
  font-weight: 700;
}
.price-period {
  font-size: 13px;
  color: var(--text-mute);
}

/* CTA button */
.price-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 18px;
  border-radius: 12px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 14.5px;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--line-strong);
  color: var(--text);
  transition: background .2s, border-color .2s, transform .2s;
}
.price-cta:hover {
  background: rgba(255,255,255,.08);
  border-color: var(--brand-cyan);
  transform: translateY(-1px);
}
.price-cta--primary {
  background: linear-gradient(135deg, var(--brand-cyan) 0%, var(--brand-2) 100%);
  border-color: transparent;
  box-shadow: 0 8px 24px rgba(56,189,248,.4);
}
.price-cta--primary:hover {
  box-shadow: 0 12px 30px rgba(56,189,248,.55);
  border-color: transparent;
}

/* Incluso em todos os planos */
.price-included {
  margin-top: 30px;
  background: linear-gradient(180deg, #0A1A3A 0%, #050B1F 100%);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 36px 36px 32px;
}
.price-included-title {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 22px;
  color: var(--text);
}
.price-included-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px 32px;
}
.price-included-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-soft);
}

/* Disclaimer */
.price-disclaimer {
  margin-top: 24px;
  padding: 22px 26px;
  background: rgba(0,0,0,0.25);
  border: 1px solid var(--line);
  border-radius: 16px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.price-disclaimer-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(56,189,248,.15);
  border: 1px solid rgba(56,189,248,.35);
  color: var(--brand-cyan-2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-style: italic;
  font-weight: 600;
  font-size: 14px;
}
.price-disclaimer h5 {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}
.price-disclaimer p {
  font-size: 13.5px;
  color: var(--text-soft);
  line-height: 1.6;
}
.price-disclaimer strong { color: var(--text); font-weight: 600; }

@media (max-width: 980px) {
  .price-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto 40px; }
  .price-included-list { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .price-included-list { grid-template-columns: 1fr; }
  .price-included { padding: 28px 22px; }
  .price-disclaimer { flex-direction: column; gap: 12px; padding: 20px; }
}

/* ============================================
   CTA FINAL
   ============================================ */
.cta {
  padding: 120px 24px;
  background:
    radial-gradient(ellipse at center, rgba(59,130,196,.20) 0%, transparent 60%),
    linear-gradient(180deg, var(--bg-deep-2) 0%, var(--bg-deep) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-glow {
  position: absolute;
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(56,189,248,.10), transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  filter: blur(80px);
  z-index: 0;
}

.cta-inner { position: relative; z-index: 1; }

.cta h2 {
  font-family: var(--font-head);
  font-size: clamp(28px, 4.5vw, 50px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}

.cta p {
  font-size: 18px;
  color: var(--text-soft);
  margin-bottom: 36px;
}

.cta-actions { display: flex; justify-content: center; }

.cta-hint {
  margin-top: 24px;
  font-size: 13px;
  color: var(--text-mute);
  font-family: var(--font-head);
  letter-spacing: 0.04em;
}

/* ============================================
   FOOTER
   ============================================ */
.foot {
  background: #02060F;
  border-top: 1px solid var(--line);
  padding-top: 60px;
}

.foot-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--line);
}

.foot-brand img {
  height: 36px;
  margin-bottom: 16px;
}
.foot-brand p {
  color: var(--text-mute);
  font-size: 14px;
  max-width: 380px;
}

.foot-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.foot-cols h4 {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text);
  margin-bottom: 16px;
}

.foot-cols a {
  display: block;
  color: var(--text-mute);
  font-size: 14px;
  padding: 4px 0;
  transition: color .2s;
}
.foot-cols a:hover { color: var(--brand-cyan); }

.foot-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--text-mute);
  flex-wrap: wrap;
  gap: 12px;
}

.foot-bottom .powered strong { color: var(--brand-cyan); font-weight: 600; }

@media (max-width: 700px) {
  .foot-inner { grid-template-columns: 1fr; }
  .foot-cols { grid-template-columns: 1fr 1fr; }
}

/* ============================================
   FLOATING WHATSAPP
   ============================================ */
.float-whats {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--whats), var(--whats-dark));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99;
  box-shadow: 0 10px 30px rgba(37,211,102,.5);
  transition: transform .25s;
  animation: floatWhats 3s ease-in-out infinite;
}
.float-whats:hover { transform: scale(1.08); }

@keyframes floatWhats {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* Reveal animation utility (used by JS) */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .8s ease, transform .8s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
