:root {
  --navy-900: #04182c;
  --navy-800: #0a2540;
  --navy-700: #0f3460;
  --blue-700: #0b5fc4;
  --blue-600: #0f86e0;
  --accent: #0f86e0;
  --accent-dark: #0b6bb8;
  --cyan: #4fd7ff;
  --ink: #10233a;
  --muted: #5b6b7c;
  --border: #e4e9ef;
  --bg: #f5f8fb;
  --card: #ffffff;
  --radius: 18px;
  --shadow: 0 20px 45px -20px rgba(10, 37, 64, 0.25);
  --font: "Inter", system-ui, -apple-system, sans-serif;
  --header-h: 67px;
}
@media (min-width: 721px) { :root { --header-h: 99px; } }

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
.container { width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 24px; }
h1, h2, h3, h4 { font-weight: 800; letter-spacing: -0.02em; color: var(--navy-900); }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 15px 30px; border-radius: 999px; font-weight: 800; font-size: 1rem;
  border: none; cursor: pointer; transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px) scale(1.02); }
.btn-accent { background: linear-gradient(135deg, var(--blue-600), var(--accent-dark)); color: #fff; box-shadow: 0 14px 28px -10px rgba(15, 134, 224, 0.6); }
.btn-accent:hover { box-shadow: 0 18px 32px -8px rgba(15, 134, 224, 0.7); }
.btn-white { background: #fff; color: var(--navy-800); box-shadow: 0 12px 24px -8px rgba(0,0,0,0.25); }
.btn-outline { background: transparent; color: var(--navy-800); border: 1.5px solid var(--border); }
.btn-outline:hover { border-color: var(--accent); color: var(--accent-dark); }
.btn-sm { padding: 10px 20px; font-size: 0.88rem; }
.btn-lg { padding: 18px 36px; font-size: 1.08rem; }
.btn-block { width: 100%; margin-top: 14px; }
.btn-link { color: var(--accent-dark); font-weight: 700; font-size: 0.85rem; display: inline-flex; align-items: center; gap: 6px; }
.btn-link:hover { text-decoration: underline; }

/* Background patterns (sem foto — CSS puro) */
.pattern-dark {
  position: relative;
  background: radial-gradient(120% 100% at 15% 0%, #0f3f6e 0%, var(--navy-800) 45%, var(--navy-900) 100%);
  overflow: hidden;
}
.pattern-dark::before {
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: radial-gradient(circle at 50% 30%, rgba(0,0,0,0.8), transparent 70%);
}
.pattern-dark .blob {
  position: absolute; border-radius: 50%; filter: blur(70px); opacity: 0.35; pointer-events: none;
}

.pattern-light {
  position: relative; overflow: hidden;
  background: linear-gradient(180deg, #eaf4fd 0%, var(--bg) 55%, var(--bg) 100%);
}
.pattern-light::before {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(10,37,64,0.05) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: radial-gradient(circle at 50% 0%, rgba(0,0,0,0.7), transparent 70%);
}
.pattern-light .blob { position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.4; pointer-events: none; }
.pattern-light .blob-1 { width: 420px; height: 420px; background: var(--blue-600); top: -160px; right: -120px; opacity: 0.18; }
.pattern-light .blob-2 { width: 360px; height: 360px; background: var(--cyan); bottom: -160px; left: -100px; opacity: 0.16; }
.blob-1 { width: 380px; height: 380px; background: var(--blue-600); top: -120px; right: -80px; }
.blob-2 { width: 320px; height: 320px; background: var(--cyan); bottom: -140px; left: -80px; opacity: 0.25; }

/* Header */
.site-header { position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,0.96); backdrop-filter: blur(10px); border-bottom: 1px solid var(--border); }
.header-inner { display: flex; align-items: center; justify-content: space-between; padding-top: 14px; padding-bottom: 14px; gap: 24px; }
.logo { display: flex; align-items: center; gap: 10px; }
.logo img { height: 38px; width: 38px; }
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-text strong { font-size: 1.05rem; font-weight: 900; color: var(--navy-900); letter-spacing: 0.01em; }
.logo-text span { font-size: 0.62rem; font-weight: 700; color: var(--accent-dark); text-transform: uppercase; letter-spacing: 0.06em; }
.nav { display: flex; gap: 26px; flex: 1; justify-content: center; }
.nav a { font-weight: 700; font-size: 0.93rem; color: var(--navy-800); transition: color .15s; }
.nav a:hover { color: var(--accent-dark); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-toggle span { width: 22px; height: 2px; background: var(--navy-900); border-radius: 2px; }

/* Hero — direto ao ponto, sem foto */
.hero { position: relative; padding: 90px 0 70px; text-align: center; color: #fff; }
.hero-inner { position: relative; z-index: 1; max-width: 720px; margin: 0 auto; }
.badge { display: inline-flex; align-items: center; gap: 6px; padding: 8px 16px; border-radius: 999px; font-size: 0.78rem; font-weight: 800; }
.badge-light { background: rgba(255,255,255,0.14); border: 1px solid rgba(255,255,255,0.3); color: #cfe8fb; margin-bottom: 22px; }
.hero h1 { font-size: clamp(2.1rem, 5vw, 3.4rem); line-height: 1.12; color: #fff; margin-bottom: 16px; }
.hero h1 .rotating-word { color: var(--cyan); }
.hero-sub { font-size: 1.15rem; color: #cfe0ee; margin-bottom: 36px; }

.price-ticket {
  display: inline-flex; align-items: center; gap: 18px; background: rgba(255,255,255,0.08);
  border: 1.5px dashed rgba(255,255,255,0.35); border-radius: 20px; padding: 18px 30px; margin-bottom: 30px;
  flex-wrap: wrap; justify-content: center;
}
.price-ticket-main { text-align: left; }
.price-ticket-tag { font-size: 0.7rem; font-weight: 800; letter-spacing: 0.06em; color: var(--cyan); }
.price-ticket-value { font-size: 2.4rem; font-weight: 900; color: #fff; line-height: 1; }
.price-ticket-value small { font-size: 0.95rem; font-weight: 600; color: #bcd6ea; }
.price-ticket-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.25); }
.price-ticket-perks { display: flex; flex-direction: column; gap: 4px; text-align: left; font-size: 0.85rem; font-weight: 700; color: #dceffb; }

.hero-actions { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }

/* Section headers */
.section-tag { display: inline-block; font-size: 0.78rem; font-weight: 800; letter-spacing: 0.08em; color: var(--accent-dark); margin-bottom: 10px; }
.section-sub { color: var(--muted); font-size: 1.02rem; margin-top: 10px; max-width: 560px; }
.section-sub.center { margin: 14px auto 0; text-align: center; }

/* Planos */
.planos { position: relative; padding: 22px 0 24px; text-align: center; background: var(--navy-900); }
.planos > .container { position: relative; z-index: 2; }
.video-bg {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0;
}
.video-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(4,24,44,0.88) 0%, rgba(4,24,44,0.82) 55%, rgba(4,24,44,0.94) 100%);
}
.planos .section-tag { color: var(--cyan); }
.planos .planos-title { color: #fff; }
.planos .section-sub { color: #cfe0ee; }
.accent-word { color: var(--cyan); }
.planos-title { font-size: clamp(1.6rem, 2.8vw, 2.1rem); line-height: 1.16; }
.section-tag { margin-bottom: 6px; }
.planos .section-sub.center { margin-top: 8px; margin-bottom: 0; }

/* Faixa de streamings — versão fina, acima dos planos */
.streaming-bar {
  display: flex; align-items: center; gap: 18px; margin: 24px auto 0; max-width: 920px;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.12); border-radius: 999px; padding: 8px 10px;
}
.streaming-bar-tag { flex-shrink: 0; font-size: 0.78rem; font-weight: 800; color: var(--cyan); white-space: nowrap; }
.streaming-marquee {
  overflow: hidden; flex: 1; min-width: 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee-track { display: flex; gap: 10px; width: max-content; animation: marqueeScroll 16s linear infinite; }
.marquee-item {
  display: flex; align-items: center; justify-content: center; white-space: nowrap; background: #fff;
  border-radius: 12px; padding: 7px 14px; height: 40px; box-sizing: border-box;
}
.marquee-item img { height: 20px; width: auto; max-width: 84px; object-fit: contain; display: block; }
.streaming-hook-note { font-size: 0.72rem; color: #9fc4e0; margin: 8px auto 0; max-width: 920px; }
@keyframes marqueeScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.plans-grid { margin-top: 48px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; text-align: left; align-items: stretch; }
.plan-card {
  position: relative; background: var(--card); border-radius: 18px; padding: 18px 18px 16px;
  border: 1px solid var(--border); display: flex; flex-direction: column; gap: 3px; transition: transform .2s ease, box-shadow .2s ease;
}
.plan-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.plan-card.featured {
  border: none; color: #fff;
  background: var(--blue-700);
  box-shadow: 0 34px 60px -18px rgba(15, 134, 224, 0.55);
  transform: translateY(-10px) scale(1.02);
  animation: featuredGlow 2.4s ease-in-out infinite;
}
.plan-card.featured:hover { transform: translateY(-14px) scale(1.02); }
@keyframes featuredGlow {
  0%, 100% { box-shadow: 0 34px 60px -18px rgba(15,134,224,0.55), 0 0 0 0 rgba(255,176,32,0.55); }
  50% { box-shadow: 0 34px 60px -18px rgba(15,134,224,0.55), 0 0 0 10px rgba(255,176,32,0); }
}
.plan-ribbon {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, #ffd76a, #ffb020); color: var(--navy-900);
  font-size: 0.66rem; font-weight: 800; letter-spacing: 0.03em; padding: 6px 16px; border-radius: 999px;
  white-space: nowrap; box-shadow: 0 10px 20px -6px rgba(0,0,0,0.35);
  animation: ribbonPulse 1.4s ease-in-out infinite;
}
@keyframes ribbonPulse { 0%, 100% { transform: translateX(-50%) scale(1); } 50% { transform: translateX(-50%) scale(1.08); } }
.plan-name { font-size: 0.9rem; font-weight: 800; color: var(--navy-900); }
.plan-card.featured .plan-name { color: #fff; }
.plan-headline { display: flex; align-items: baseline; gap: 8px; margin: 1px 0 3px; }
.plan-number { font-family: 'Poppins', var(--font); font-size: 2.35rem; font-weight: 900; color: var(--blue-700); line-height: 1; letter-spacing: -0.01em; }
.plan-card.featured .plan-number { color: #fff; }
.plan-unit { font-size: 1rem; font-weight: 700; color: var(--muted); }
.plan-card.featured .plan-unit { color: #cfe0ee; }
.plan-for { font-size: 0.78rem; color: var(--muted); font-weight: 600; margin-bottom: 6px; line-height: 1.3; }
.plan-card.featured .plan-for { color: #dceffb; }
.plan-features { display: flex; flex-direction: column; gap: 4px; margin-top: 2px; }
.plan-feature { display: flex; align-items: center; gap: 7px; font-size: 0.8rem; color: var(--ink); font-weight: 600; }
.plan-feature svg { color: var(--accent-dark); flex-shrink: 0; }
.plan-card.featured .plan-feature { color: #eef7fd; }
.plan-card.featured .plan-feature svg { color: var(--cyan); }
.plan-sticky-summary {
  position: sticky; top: var(--header-h); z-index: 5; background: var(--card);
  padding-bottom: 10px; margin: 0 -18px; padding-left: 18px; padding-right: 18px;
  border-radius: 0 0 16px 16px; border-bottom: 2px solid var(--border);
  box-shadow: 0 16px 16px -12px rgba(10,37,64,0.28);
}
.plan-card.featured .plan-sticky-summary {
  background: var(--blue-700); border-bottom-color: rgba(255,255,255,0.35);
  box-shadow: 0 16px 16px -12px rgba(2,12,26,0.5);
}
.sticky-sentinel { height: 1px; }
.plan-sticky-summary.stuck {
  animation: stickySettle 0.3s ease;
  border: 2px solid var(--border); border-radius: 16px;
}
.plan-card.featured .plan-sticky-summary.stuck { border-color: rgba(255,255,255,0.55); }
@keyframes stickySettle {
  0% { transform: translateY(-8px); opacity: 0.82; }
  100% { transform: translateY(0); opacity: 1; }
}
@media (prefers-reduced-motion: reduce) { .plan-sticky-summary.stuck { animation: none; } }
.sticky-row { display: flex; flex-direction: column; }
.sticky-info { display: flex; flex-direction: column; }
.sticky-benefits {
  display: flex; flex-direction: column; gap: 2px; max-height: 0; opacity: 0; overflow: hidden;
  font-size: 0.64rem; font-weight: 600; color: var(--muted); margin-top: 2px;
  transition: max-height 0.25s ease, opacity 0.2s ease, margin-top 0.25s ease;
}
.plan-card.featured .sticky-benefits { color: #cfe0ee; }
.sticky-price-wrap { text-align: left; }
.plan-sticky-summary.stuck .sticky-row { flex-direction: row; justify-content: space-between; align-items: flex-start; gap: 12px; }
.plan-sticky-summary.stuck .sticky-benefits { max-height: 60px; opacity: 1; margin-top: 4px; }
.plan-sticky-summary.stuck .sticky-price-wrap { text-align: right; }
.plan-sticky-summary.stuck .plan-price { font-size: 1.5rem; margin-top: 0; }
.sticky-label {
  display: block; padding-top: 8px; font-size: 0.68rem; font-weight: 800; letter-spacing: 0.02em;
  color: var(--accent-dark); text-transform: uppercase;
}
.plan-card.featured .sticky-label { color: var(--cyan); }
.plan-price { font-family: 'Poppins', var(--font); font-size: 1.85rem; font-weight: 900; color: var(--navy-900); margin-top: 6px; }
.plan-price .currency { font-size: 0.9rem; font-weight: 700; margin-right: 2px; color: var(--accent-dark); }
.plan-price .cents { font-size: 1.05rem; color: var(--accent-dark); }
.price-value { display: inline-block; }
.price-value.bump { animation: priceBump 0.45s ease; }
@keyframes priceBump {
  0% { transform: scale(1); filter: drop-shadow(0 0 0 rgba(79,215,255,0)); }
  35% { transform: scale(1.16); filter: drop-shadow(0 0 10px rgba(79,215,255,0.9)); }
  100% { transform: scale(1); filter: drop-shadow(0 0 0 rgba(79,215,255,0)); }
}
@media (prefers-reduced-motion: reduce) { .price-value.bump { animation: none; } }
.plan-card.featured .plan-price { color: #fff; }
.plan-card.featured .plan-price .currency, .plan-card.featured .plan-price .cents { color: var(--cyan); }
.plan-period { font-size: 0.72rem; color: var(--muted); font-weight: 600; margin-top: -6px; }
.plan-card.featured .plan-period { color: #a9c9df; }
.plan-compare {
  display: block; font-size: 0.72rem; font-weight: 700; color: #fff; background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25); border-radius: 10px; padding: 6px 10px; text-align: center; margin-top: 6px;
}
.plan-card .btn-block { padding: 11px 20px; font-size: 0.86rem; margin-top: 8px; }
.plans-grid-3 { grid-template-columns: repeat(3, 1fr); max-width: 980px; margin-left: auto; margin-right: auto; align-items: start; }

.plan-extra-note { display: block; font-size: 0.68rem; font-weight: 700; color: var(--accent-dark); margin-top: 2px; min-height: 1em; }
.plan-card.featured .plan-extra-note { color: var(--cyan); }

/* Vídeo/animação no topo de cada plano — foguete em velocidades crescentes */
.plan-visual {
  position: relative; margin: -18px -18px 10px; height: 96px; border-radius: 18px 18px 0 0; overflow: hidden;
  background: radial-gradient(120% 160% at 20% -20%, #0f3f6e 0%, var(--navy-900) 70%);
}
.plan-visual::before {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(#fff 1px, transparent 1px), radial-gradient(#fff 1px, transparent 1px);
  background-size: 60px 60px, 90px 90px; background-position: 0 0, 30px 40px; opacity: 0.35;
}
.starlayer {
  content: ""; position: absolute; inset: -20px;
  background-image: radial-gradient(rgba(255,255,255,0.9) 1px, transparent 1.4px);
  background-size: 34px 34px; opacity: 0.4;
}
.plan-visual-1 .starlayer { animation: starDrift 5s linear infinite; }
.plan-visual-2 .starlayer { animation: starDrift 3.2s linear infinite; }
.plan-visual-3 .starlayer { animation: starDrift 1.5s linear infinite; }
@keyframes starDrift { from { background-position: 0 0; } to { background-position: -160px 0; } }

.rocket-wrap { position: absolute; top: 50%; left: -40px; transform: translateY(-50%) rotate(45deg); }
.rocket { position: relative; display: block; font-size: 1.6rem; filter: drop-shadow(0 0 6px rgba(255,255,255,0.5)); z-index: 2; }
.rocket-flame {
  position: absolute; top: 50%; right: 100%; width: 46px; height: 9px; transform: translateY(-50%);
  background: linear-gradient(90deg, transparent, rgba(255,120,0,0.85) 40%, rgba(255,220,120,1));
  border-radius: 6px; filter: blur(2.5px); animation: flameFlicker 0.12s ease-in-out infinite alternate;
}
@keyframes flameFlicker {
  from { opacity: 0.7; transform: translateY(-50%) scaleX(0.85); }
  to { opacity: 1; transform: translateY(-50%) scaleX(1.2); }
}
.spark { position: absolute; top: 50%; width: 3px; height: 3px; border-radius: 50%; background: #ffd580; box-shadow: 0 0 4px rgba(255,214,128,0.9); }
.spark-1 { right: 100%; animation: sparkFade 0.5s linear infinite; }
.spark-2 { right: 100%; animation: sparkFade 0.5s linear infinite 0.22s; }
@keyframes sparkFade {
  0% { opacity: 1; transform: translate(0, -50%); }
  100% { opacity: 0; transform: translate(-26px, calc(-50% + 12px)); }
}

.plan-visual-1 .rocket-wrap { animation: rocketFly 3.2s linear infinite; }
.plan-visual-2 .rocket-wrap { animation: rocketFly 2s linear infinite; }
.plan-visual-3 .rocket-wrap { animation: rocketFly 1s linear infinite; }
.plan-visual-3 .rocket { font-size: 1.85rem; filter: drop-shadow(0 0 14px rgba(255,180,80,0.95)); }
.plan-visual-3 .rocket-flame { width: 60px; height: 11px; }
@keyframes rocketFly {
  0% { left: -40px; opacity: 0; }
  8% { opacity: 1; }
  92% { opacity: 1; }
  100% { left: 110%; opacity: 0; }
}

.plan-visual-3::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(circle at 50% 50%, rgba(255,255,255,0.55), transparent 60%);
  opacity: 0; animation: boostFlash 1s ease-out infinite;
}
@keyframes boostFlash { 0% { opacity: 0; } 6% { opacity: 0.55; } 18% { opacity: 0; } 100% { opacity: 0; } }

@media (prefers-reduced-motion: reduce) {
  .rocket-wrap, .starlayer, .plan-visual-3::after { animation: none !important; }
  .rocket-wrap { left: 45%; }
  .plan-card.featured, .plan-ribbon { animation: none !important; }
}

/* Painel de personalização — sempre visível dentro de cada card */
.card-personalize { margin-top: 10px; }
.personalize-title {
  display: block; font-size: 0.72rem; font-weight: 700; color: var(--accent-dark); margin-bottom: 8px; line-height: 1.3;
}
.plan-card.featured .personalize-title { color: var(--cyan); }
.toggle-grid-1col { display: flex; flex-direction: column; gap: 6px; }
.app-row {
  display: flex; align-items: center; gap: 10px; background: rgba(0,0,0,0.03); border: 1px solid var(--border);
  border-radius: 10px; padding: 7px 9px; cursor: pointer; transition: background .15s, border-color .15s;
}
.plan-card.featured .app-row { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.16); }
.app-row:hover { background: rgba(15,134,224,0.06); }
.app-icon { width: 28px; height: 28px; border-radius: 8px; object-fit: contain; background: #fff; flex-shrink: 0; padding: 2px; box-sizing: border-box; }
.app-icon-fallback {
  display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, var(--blue-600), var(--cyan));
  color: #fff; font-size: 0.62rem; font-weight: 800;
}
.app-info { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 1px; }
.app-info strong { font-size: 0.74rem; font-weight: 700; color: var(--navy-900); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.plan-card.featured .app-info strong { color: #fff; }
.app-info small { font-size: 0.62rem; font-weight: 600; color: var(--accent-dark); }
.plan-card.featured .app-info small { color: var(--cyan); }
.app-toggle { position: absolute; opacity: 0; width: 0; height: 0; }
.switch {
  flex-shrink: 0; position: relative; width: 34px; height: 20px; border-radius: 999px;
  background: var(--border); border: 1px solid var(--border); transition: background .15s;
}
.plan-card.featured .switch { background: rgba(255,255,255,0.18); border-color: rgba(255,255,255,0.25); }
.switch::before {
  content: ""; position: absolute; top: 1px; left: 1px; width: 16px; height: 16px; border-radius: 50%;
  background: #fff; transition: transform .15s; box-shadow: 0 1px 3px rgba(0,0,0,0.3);
}
.app-toggle:checked + .switch { background: var(--accent); border-color: var(--accent); }
.app-toggle:checked + .switch::before { transform: translateX(14px); }
.app-row:has(.app-toggle:checked), .app-row.active { border-color: var(--accent); }
.btn-reset-mini {
  display: block; width: 100%; margin-top: 8px; background: none; border: 1.5px solid var(--border); color: var(--navy-800);
  border-radius: 999px; padding: 7px 12px; font-size: 0.72rem; font-weight: 700; cursor: pointer; font-family: var(--font);
}
.plan-card.featured .btn-reset-mini { border-color: rgba(255,255,255,0.3); color: #fff; }
.btn-reset-mini:hover { border-color: var(--accent-dark); color: var(--accent-dark); }
.personalize-note { font-size: 0.68rem; color: #9fc4e0; margin: 14px 0 0; }
.personalize-note.center { text-align: center; }
.marquee-icon-fallback {
  display: inline-flex; align-items: center; justify-content: center; width: 20px; height: 20px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-600), var(--cyan)); color: #fff; font-size: 0.56rem; font-weight: 800; margin-right: 6px;
}

/* Combo / vantagens */
.combo { padding: 80px 0; text-align: center; }
.combo h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 8px; }
.combo p.section-sub { margin: 0 auto 40px; }
.combo-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-bottom: 36px; }
.combo-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 28px 18px;
  text-align: center; transition: transform .2s ease, box-shadow .2s ease;
}
.combo-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.combo-icon { width: 64px; height: 64px; display: flex; align-items: center; justify-content: center; margin: 0 auto 14px; }
.combo-icon img { width: 100%; height: 100%; object-fit: contain; }
.combo-card h3 { font-size: 0.98rem; margin-bottom: 4px; }
.combo-card p { font-size: 0.82rem; color: var(--muted); }

/* Coverage / CEP */
.coverage { padding: 80px 0; text-align: center; color: #fff; }
.coverage-inner { position: relative; z-index: 1; max-width: 560px; margin: 0 auto; }
.coverage h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 10px; color: #fff; }
.coverage p { color: #cfe0ee; margin-bottom: 26px; }
.coverage-form { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; }
.coverage-form input {
  flex: 1; min-width: 220px; padding: 15px 20px; border-radius: 999px; border: none;
  font-size: 1rem; font-family: var(--font); color: var(--ink);
}
.coverage-form input:focus { outline: 2px solid var(--cyan); }
.coverage-note { font-size: 0.8rem; color: #9fc4e0; margin-top: 14px; }

/* Sobre — curto, sem foto */
.about { padding: 70px 0; text-align: center; }
.about-inner { max-width: 640px; margin: 0 auto; }
.about h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 14px; }
.about p { color: var(--muted); font-size: 1.05rem; margin-bottom: 20px; }
.about-pills { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin-bottom: 26px; }
.about-pill { background: rgba(15,134,224,0.08); border: 1px solid rgba(15,134,224,0.25); color: var(--accent-dark); border-radius: 999px; padding: 9px 16px; font-size: 0.82rem; font-weight: 700; }

/* Parceiros */
.partners { padding: 80px 0; text-align: center; background: #fff; }
.partners h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 8px; }
.partners p.section-sub { margin: 10px auto 0; }
.partners-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; max-width: 640px; margin: 40px auto 0; }
.partner-card {
  position: relative; display: flex; flex-direction: column; align-items: center;
  background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 34px 22px 28px; text-decoration: none; transition: transform .2s ease, box-shadow .2s ease;
}
.partner-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.partner-badge {
  position: absolute; top: 16px; right: 16px; background: linear-gradient(135deg, var(--blue-600), var(--accent-dark));
  color: #fff; font-size: 0.68rem; font-weight: 800; padding: 5px 10px; border-radius: 999px;
}
.partner-logo {
  width: 100%; max-width: 150px; aspect-ratio: 1; border-radius: 18px; object-fit: cover;
  margin-bottom: 16px; box-shadow: 0 10px 24px -10px rgba(10,37,64,0.25);
}
.partner-card h3 { font-size: 1rem; margin-bottom: 2px; }
.partner-sub { display: block; font-size: 0.8rem; color: var(--muted); margin-bottom: 6px; }
.partner-link { display: inline-flex; align-items: center; gap: 6px; font-size: 0.82rem; font-weight: 700; color: var(--accent-dark); margin-top: 10px; }
.partner-card:hover .partner-link { text-decoration: underline; }

.partner-mini-posts { position: relative; width: 44px; height: 44px; border-radius: 10px; margin: 10px auto 0; box-shadow: 0 0 0 2px var(--accent); overflow: hidden; }
.mini-post {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  opacity: 0; transition: opacity .5s ease;
}
.mini-post.active { opacity: 1; }

/* FAQ */
.faq { padding: 80px 0; text-align: center; background: var(--bg); }
.faq h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 36px; }
.faq-list { max-width: 680px; margin: 0 auto; text-align: left; display: flex; flex-direction: column; gap: 10px; }
.faq-item { border: 1px solid var(--border); border-radius: 14px; background: #fff; overflow: hidden; }
.faq-question { width: 100%; display: flex; justify-content: space-between; align-items: center; padding: 18px 22px; background: none; border: none; font-size: 1rem; font-weight: 700; color: var(--navy-900); cursor: pointer; text-align: left; }
.faq-icon { font-size: 1.3rem; color: var(--accent-dark); transition: transform .2s; flex-shrink: 0; margin-left: 12px; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .25s ease; padding: 0 22px; }
.faq-answer p { color: var(--muted); padding-bottom: 18px; font-size: 0.95rem; }
.faq-item.open .faq-answer { max-height: 220px; }

/* CTA final */
.cta-final { padding: 80px 0; text-align: center; color: #fff; }
.cta-final-inner { position: relative; z-index: 1; }
.cta-final-card {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  max-width: 640px; margin: 0 auto; padding: 48px 40px;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.14); border-radius: 28px;
  box-shadow: 0 30px 60px -25px rgba(0,0,0,0.5);
}
.cta-final h2 { color: #fff; font-size: clamp(1.6rem, 3.4vw, 2.3rem); margin-top: 6px; }
.cta-final p { color: #c7d7e6; margin-bottom: 26px; font-size: 1.05rem; }
.cta-final-btn { animation: ctaPulse 2.2s ease-in-out infinite; }
@keyframes ctaPulse {
  0%, 100% { box-shadow: 0 14px 28px -10px rgba(15,134,224,0.6), 0 0 0 0 rgba(15,134,224,0.5); }
  50% { box-shadow: 0 14px 28px -10px rgba(15,134,224,0.6), 0 0 0 14px rgba(15,134,224,0); }
}
@media (prefers-reduced-motion: reduce) { .cta-final-btn { animation: none; } }
.cta-final-badges { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-top: 26px; }
.cta-final-badges span {
  font-size: 0.78rem; font-weight: 700; color: #cfe0ee; background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.16); padding: 7px 14px; border-radius: 999px;
}

/* Footer */
.footer-actions { background: var(--navy-800); border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-actions-inner { display: flex; justify-content: center; gap: 40px; flex-wrap: wrap; padding: 16px 0; }
.footer-actions-inner a { color: #cfe0ee; font-size: 0.86rem; font-weight: 600; display: flex; align-items: center; gap: 8px; }
.footer-actions-inner a:hover { color: var(--cyan); }
.site-footer { background: var(--navy-900); color: #cfe0ee; padding: 56px 0 0; }
.footer-inner { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 36px; padding-bottom: 36px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-brand { display: flex; flex-direction: column; }
.footer-logo-row { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer-logo-row img { height: 32px; width: 32px; }
.footer-logo-row strong { color: #fff; font-size: 1rem; font-weight: 900; }
.footer-brand p { font-size: 0.9rem; color: #9fb6cb; margin-bottom: 16px; }
.footer-social { display: flex; gap: 12px; }
.footer-col .footer-social a {
  flex-shrink: 0; width: 34px; height: 34px; border-radius: 50%; background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center; margin-bottom: 0; transition: background .15s;
}
.footer-social a:hover { background: var(--accent); }
.footer-social svg { display: block; flex-shrink: 0; }
.footer-col h4 { color: #fff; font-size: 0.88rem; margin-bottom: 14px; letter-spacing: 0.03em; }
.footer-col a, .footer-col p { display: block; font-size: 0.86rem; color: #9fb6cb; margin-bottom: 9px; }
.footer-col a:hover { color: var(--accent); }
.footer-bottom { padding: 20px 0; text-align: center; font-size: 0.78rem; color: #7d93a8; }
.footer-bottom p { margin-bottom: 6px; }
.footer-uply {
  display: inline-flex; align-items: center; gap: 6px; font-size: 0.78rem; color: #7d93a8;
  text-decoration: none; transition: opacity .2s;
}
.footer-uply:hover { opacity: 0.75; }
.footer-uply img { height: 26px; width: auto; }

/* WhatsApp float */
.whatsapp-float {
  position: fixed; bottom: 24px; right: 24px; width: 58px; height: 58px; border-radius: 50%;
  background: #25D366; color: #fff; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 25px -8px rgba(37, 211, 102, 0.6); z-index: 90; transition: transform .15s;
}
.whatsapp-float:hover { transform: scale(1.08); }

/* Responsive */
@media (max-width: 980px) {
  .plans-grid { grid-template-columns: repeat(2, 1fr); }
  .plans-grid-3 { grid-template-columns: 1fr; max-width: 420px; }
  .plan-card.featured { transform: none; grid-column: span 2; }
  .plans-grid-3 .plan-card.featured { grid-column: auto; }
  .combo-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: repeat(2, 1fr); }
  .toggle-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
  .nav { display: none; }
  .nav-toggle { display: flex; }
  .header-inner .btn-sm { display: none; }
  .plans-grid { grid-template-columns: 1fr; }
  .plans-grid-3 { grid-template-columns: 1fr; }
  .toggle-grid { grid-template-columns: 1fr; }
  .combo-grid { grid-template-columns: 1fr; }
  .partners-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .plan-card.featured { transform: none; grid-column: auto; }
  .hero { padding: 56px 0 50px; }
  .price-ticket { flex-direction: column; gap: 12px; padding: 20px; }
  .price-ticket-divider { display: none; }
  .price-ticket-main, .price-ticket-perks { text-align: center; }
  .footer-actions-inner { flex-direction: column; align-items: center; gap: 12px; }
  .footer-bottom { padding-bottom: 90px; }
}

body.nav-open .nav {
  display: flex; position: absolute; top: 100%; left: 0; right: 0; background: #fff;
  flex-direction: column; padding: 20px 24px; gap: 18px; border-bottom: 1px solid var(--border); box-shadow: var(--shadow);
}
