:root {
  --primary: #5B2C91;
  --primary-dark: #2D1B6B;
  --primary-light: #EDE9FE;
  --gold: #FFB800;
  --gold-soft: #FFF4D6;
  --gold-dark: #B8860B;
  --cta-1: #22C55E;
  --cta-2: #15803D;
  --cta-dark: #14532D;
  --text: #0F172A;
  --text-soft: #475569;
  --text-light: #94a3b8;
  --bg: #ffffff;
  --bg-soft: #FAFAFB;
  --bg-cream: #FFFBF2;
  --bg-dark: #1a1a2e;
  --border: #E5E7EB;
  --radius: 14px;
  --radius-lg: 22px;
  --container: 1140px;
  --shadow-sm: 0 2px 8px rgba(45, 27, 107, 0.08);
  --shadow: 0 8px 24px rgba(45, 27, 107, 0.12);
  --shadow-lg: 0 20px 48px rgba(45, 27, 107, 0.18);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

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

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

.center { text-align: center; }
.mt-32 { margin-top: 32px; }
.mt-40 { margin-top: 40px; }
.gold-text { color: var(--gold-dark); font-weight: 900; }
.purple-text { color: var(--primary); font-weight: 900; }

/* ============== BUTTONS ============== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 17px 32px;
  border-radius: 60px;
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.6px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.25s ease, filter 0.15s ease;
  text-align: center;
  line-height: 1.2;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
}

.btn:hover { transform: translateY(-3px); }
.btn:active { transform: translateY(-1px); }

/* CTA laranja vibrante com gradient + brilho */
.btn-cta {
  background: linear-gradient(180deg, #FB923C 0%, #F97316 55%, #EA580C 100%);
  color: white;
  box-shadow:
    0 8px 20px rgba(234, 88, 12, 0.45),
    0 2px 4px rgba(154, 52, 18, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.35),
    inset 0 -2px 0 rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(234, 88, 12, 0.6);
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
}

.btn-cta::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(100deg, transparent 0%, rgba(255,255,255,0.35) 50%, transparent 100%);
  animation: shine 3.2s ease-in-out infinite;
}

@keyframes shine {
  0%, 35% { left: -100%; }
  60%, 100% { left: 130%; }
}

.btn-cta:hover {
  box-shadow:
    0 12px 28px rgba(234, 88, 12, 0.6),
    inset 0 1px 0 rgba(255,255,255,0.4),
    inset 0 -2px 0 rgba(0,0,0,0.2);
}

.btn-primary {
  background: var(--primary);
  color: white;
  box-shadow: 0 6px 16px rgba(91, 44, 145, 0.35);
}
.btn-primary:hover { background: var(--primary-dark); }

.btn-outline {
  background: white;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-outline:hover { background: var(--primary); color: white; }

.btn-large { padding: 21px 40px; font-size: 16px; }
.btn-hero { font-size: 16px; padding: 19px 38px; margin-top: 8px; }

/* ============== HERO ============== */
.hero {
  background: radial-gradient(ellipse at top, #F7F2FF 0%, #FFFFFF 60%);
  padding: 70px 0 60px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -100px; right: -200px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(91, 44, 145, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -200px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255, 184, 0, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.hero-plus-inline {
  color: var(--primary);
  font-weight: 900;
  background: linear-gradient(120deg, transparent 0%, transparent 50%, rgba(255, 184, 0, 0.18) 50%, rgba(255, 184, 0, 0.18) 100%);
  padding: 0 6px;
  border-radius: 6px;
}

.hero-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 900;
  font-size: clamp(30px, 4.5vw, 46px);
  line-height: 1.1;
  letter-spacing: -1px;
  color: var(--text);
  margin-bottom: 18px;
  max-width: 700px;
}

.hero-highlight {
  position: relative;
  display: inline-block;
  white-space: nowrap;
}
.hero-highlight::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  bottom: 4px;
  height: 32%;
  background: var(--gold);
  z-index: -1;
  border-radius: 4px;
}

.hero-sub {
  font-size: clamp(15px, 2.2vw, 18px);
  color: var(--text-soft);
  line-height: 1.55;
  max-width: 580px;
  margin-bottom: 32px;
}

/* Mockup do hero — sem moldura, capa transparente */
.hero-mockup {
  position: relative;
  margin: 12px 0 26px;
  max-width: 460px;
  width: 100%;
}

.hero-mockup img {
  width: 100%;
  filter: drop-shadow(0 28px 50px rgba(91, 44, 145, 0.32))
          drop-shadow(0 6px 12px rgba(0, 0, 0, 0.12));
  animation: float 6s ease-in-out infinite;
}

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

.hero-social {
  margin-top: 30px;
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content: center;
}

.avatars {
  display: flex;
}

.avatars img {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 3px solid white;
  margin-left: -14px;
  object-fit: cover;
  box-shadow: 0 3px 8px rgba(0,0,0,0.18);
}
.avatars img:first-child { margin-left: 0; }

.hero-social-text {
  font-size: 13px;
  color: var(--text-soft);
  text-align: left;
}
.stars { color: #FFB400; font-size: 15px; letter-spacing: 1px; line-height: 1; }
.hero-social-text strong { color: var(--primary-dark); font-size: 14px; }

/* ============== SECTION HEAD ============== */
.section-head {
  margin-bottom: 44px;
}

.section-head.center { text-align: center; }

.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2.4px;
  color: var(--primary);
  margin-bottom: 14px;
  padding: 6px 16px;
  background: var(--primary-light);
  border-radius: 30px;
}
.eyebrow.gold { color: var(--gold-dark); background: var(--gold-soft); }

.section-head h2 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.7px;
  color: var(--text);
  margin-bottom: 14px;
}

.section-head p {
  font-size: 16px;
  color: var(--text-soft);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.55;
}

/* ============== MARQUEE INFINITO ============== */
.preview {
  padding: 80px 0;
  background: linear-gradient(180deg, #FAFAFB 0%, #FFFFFF 100%);
  overflow: hidden;
}

.marquee {
  position: relative;
  overflow: hidden;
  padding: 20px 0;
  margin: 40px 0 8px;
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.marquee-track {
  display: flex;
  gap: 36px;
  width: max-content;
  animation: marquee 35s linear infinite;
}

.marquee:hover .marquee-track {
  animation-play-state: paused;
}

.m-slide {
  flex: 0 0 auto;
  width: 420px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(45, 27, 107, 0.18);
  background: white;
  transition: transform 0.25s ease;
}

.m-slide:hover {
  transform: translateY(-6px) scale(1.02);
}

.m-slide img {
  width: 100%;
  height: auto;
  display: block;
}

@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============== BUBBLES (Beneficios) ============== */
.benefits {
  padding: 90px 0;
  background: linear-gradient(180deg, #FFFFFF 0%, #FAFAFB 100%);
  position: relative;
}

.bubbles-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px 22px;
  margin-top: 30px;
}

/* Balão delicado: branco neutro, ícone em pin roxo, sombra leve */
.bubble {
  background: white;
  border-radius: 28px;
  padding: 44px 22px 26px;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
  box-shadow:
    0 10px 28px rgba(91, 44, 145, 0.08),
    0 2px 6px rgba(91, 44, 145, 0.04);
  border: 1px solid var(--border);
}

.bubble:hover {
  transform: translateY(-8px);
  box-shadow:
    0 22px 44px rgba(91, 44, 145, 0.14),
    0 6px 12px rgba(91, 44, 145, 0.08);
  border-color: var(--primary-light);
}

/* Ícone como "pin" flutuante no topo do balão */
.bubble-icon {
  position: absolute;
  top: -26px;
  left: 50%;
  transform: translateX(-50%);
  width: 54px; height: 54px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow:
    0 8px 18px rgba(91, 44, 145, 0.32),
    0 0 0 5px white;
}

.bubble-icon svg { width: 24px; height: 24px; }

.bubble h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 8px;
  line-height: 1.25;
  color: var(--primary-dark);
}

.bubble p {
  font-size: 13.5px;
  color: var(--text-soft);
  line-height: 1.5;
}

/* ============== TRANSITION (VAGAS LIMITADAS) ============== */
.transition {
  padding: 90px 0;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.transition::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,184,0,0.18) 0%, transparent 70%);
  border-radius: 50%;
}
.transition::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,184,0,0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.urgency-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,184,0,0.4);
  padding: 10px 22px;
  border-radius: 40px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.8px;
  margin-bottom: 28px;
  position: relative;
  z-index: 2;
}

.pulse-dot {
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); box-shadow: 0 0 0 0 rgba(255,184,0,0.7); }
  50% { opacity: 0.6; transform: scale(1.3); box-shadow: 0 0 0 12px rgba(255,184,0,0); }
}

.transition h2 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 900;
  max-width: 820px;
  margin: 0 auto 20px;
  line-height: 1.15;
  position: relative;
  z-index: 2;
}

.transition p {
  font-size: 17px;
  max-width: 720px;
  margin: 0 auto 36px;
  opacity: 0.95;
  position: relative;
  z-index: 2;
}

.safe-pill {
  margin-top: 22px;
  display: inline-block;
  background: rgba(255,255,255,0.15);
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  position: relative;
  z-index: 2;
}

/* ============== AUDIENCE ============== */
.audience {
  padding: 90px 0;
  background: white;
}

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

.audience-card {
  background: white;
  padding: 36px 28px 28px;
  border-radius: var(--radius-lg);
  border: 2px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.audience-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--gold));
}

.audience-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.audience-featured {
  border-color: var(--primary);
  transform: scale(1.03);
  box-shadow: var(--shadow);
}

.a-emoji {
  font-size: 52px;
  margin-bottom: 18px;
  display: inline-block;
  background: var(--primary-light);
  width: 92px; height: 92px;
  border-radius: 50%;
  line-height: 92px;
}

.audience-card h3 {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 22px;
  margin-bottom: 12px;
  color: var(--primary-dark);
}

.audience-card p {
  font-size: 15px;
  color: var(--text-soft);
  margin-bottom: 18px;
  line-height: 1.55;
}

.a-tag {
  display: inline-block;
  background: var(--gold-soft);
  color: var(--gold-dark);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
  padding: 5px 14px;
  border-radius: 20px;
}

/* ============== BENEFITS HERO IMAGE ============== */
.benefits-hero {
  max-width: 720px;
  margin: 0 auto 40px;
  text-align: center;
}
.benefits-hero img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 24px 40px rgba(45, 27, 107, 0.22))
          drop-shadow(0 6px 12px rgba(0, 0, 0, 0.08));
}

/* ============== BONUS (FUNDO ESCURO ELEGANTE) ============== */
.bonus {
  padding: 90px 0;
  background:
    radial-gradient(ellipse at top, rgba(91, 44, 145, 0.4) 0%, transparent 60%),
    linear-gradient(180deg, #0F0B2E 0%, #1A1145 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.bonus::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 50%;
  background: radial-gradient(ellipse at bottom, rgba(255, 184, 0, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.bonus .section-head h2 { color: white; }
.bonus .section-head p { color: rgba(255,255,255,0.85); }
.bonus .section-head.light .eyebrow { background: rgba(255, 184, 0, 0.15); color: var(--gold); }

.bonus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 20px;
}

.bonus-card {
  background: white;
  border: 1px solid rgba(255, 184, 0, 0.4);
  border-radius: var(--radius-lg);
  padding: 22px 24px 24px;
  text-align: center;
  position: relative;
  z-index: 2;
  transition: all 0.25s ease;
  box-shadow:
    0 16px 36px rgba(0, 0, 0, 0.28),
    0 0 0 4px rgba(255, 184, 0, 0.06);
}

.bonus-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold);
  box-shadow:
    0 24px 52px rgba(0, 0, 0, 0.32),
    0 0 0 4px rgba(255, 184, 0, 0.18);
}

.bonus-tag {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold), #E6A300);
  color: white;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.5px;
  padding: 6px 14px;
  border-radius: 30px;
  margin-bottom: 14px;
  box-shadow: 0 4px 8px rgba(255,184,0,0.3);
}

.bonus-img {
  margin-bottom: 16px;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.bonus-img img {
  max-height: 230px;
  filter: drop-shadow(0 18px 30px rgba(0, 0, 0, 0.45))
          drop-shadow(0 4px 10px rgba(0, 0, 0, 0.3));
}

.bonus-card h3 {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 17px;
  line-height: 1.25;
  margin-bottom: 12px;
  color: var(--primary-dark);
}

.bonus-card p {
  font-size: 14px;
  color: var(--text-soft);
  margin-bottom: 16px;
  min-height: 60px;
}

.bonus-price {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding-top: 14px;
  border-top: 1px dashed rgba(184, 134, 11, 0.35);
}

.bonus-old {
  font-size: 13px;
  color: var(--text-light);
  text-decoration: line-through;
}

.bonus-new {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 900;
  color: var(--gold-dark);
  letter-spacing: 1px;
}

.bonus-total {
  margin: 44px auto 0;
  text-align: center;
  background: linear-gradient(135deg, #FFFFFF 0%, #FFF8E0 100%);
  border: 2px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: 26px 32px;
  max-width: 600px;
  position: relative;
  z-index: 2;
  box-shadow:
    0 18px 42px rgba(0, 0, 0, 0.3),
    0 0 0 6px rgba(255, 184, 0, 0.1);
}

.bt-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-soft);
}

.bt-label { letter-spacing: 0.3px; }

.bt-strike {
  font-family: 'Poppins', sans-serif;
  font-size: 22px;
  font-weight: 900;
  color: #94a3b8;
  text-decoration: line-through;
  text-decoration-thickness: 2px;
}

.bt-divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 12px auto;
}

.bt-now {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.bt-stamp {
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  font-size: 36px;
  font-weight: 900;
  letter-spacing: 1px;
  color: white;
  background: linear-gradient(135deg, var(--gold) 0%, #E6A300 50%, var(--gold-dark) 100%);
  padding: 8px 24px;
  border-radius: 12px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  box-shadow:
    0 8px 18px rgba(255, 184, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.3),
    inset 0 -2px 0 rgba(0, 0, 0, 0.12);
  transform: rotate(-2deg);
}

.bt-tag {
  font-size: 14px;
  font-weight: 700;
  color: var(--primary-dark);
  letter-spacing: 0.2px;
  max-width: 220px;
  text-align: left;
  line-height: 1.3;
}

@media (max-width: 520px) {
  .bt-now { flex-direction: column; gap: 10px; }
  .bt-tag { text-align: center; max-width: none; }
  .bt-stamp { font-size: 30px; padding: 6px 20px; }
}

/* ============== TESTIMONIALS ============== */
.testimonials {
  padding: 90px 0;
  background: var(--bg-soft);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.testimonial-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: transform 0.25s ease;
  background: white;
}

.testimonial-card:hover { transform: translateY(-4px); }

.testimonial-card img {
  width: 100%;
  height: auto;
  display: block;
}

/* ============== PLANS ============== */
.plans {
  padding: 90px 0;
  background: white;
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 880px;
  margin: 0 auto;
  align-items: start;
}

.plan-card {
  background: white;
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  position: relative;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.plans-grid { align-items: stretch; }

.plan-includes { flex: 1; }

.plan-card .btn { margin-top: auto; }

/* Pulse sutil + glow no CTA do plano premium */
.plan-featured .btn-cta {
  animation: ctaBreathe 2.6s ease-in-out infinite;
}

@keyframes ctaBreathe {
  0%, 100% {
    transform: scale(1);
    box-shadow:
      0 8px 20px rgba(234, 88, 12, 0.42),
      0 2px 4px rgba(154, 52, 18, 0.3),
      inset 0 1px 0 rgba(255, 255, 255, 0.35),
      inset 0 -2px 0 rgba(0, 0, 0, 0.15),
      0 0 0 0 rgba(255, 184, 0, 0.45);
  }
  50% {
    transform: scale(1.025);
    box-shadow:
      0 12px 28px rgba(234, 88, 12, 0.55),
      0 4px 10px rgba(154, 52, 18, 0.35),
      inset 0 1px 0 rgba(255, 255, 255, 0.4),
      inset 0 -2px 0 rgba(0, 0, 0, 0.2),
      0 0 0 8px rgba(255, 184, 0, 0);
  }
}

/* Touch devices sem hover: mantém anim mas curta */
@media (hover: none) {
  .plan-featured .btn-cta {
    animation: ctaBreathe 3s ease-in-out infinite !important;
  }
}

.plan-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

/* Plan Esencial: fundo neutro frio */
.plan-essential {
  background: linear-gradient(180deg, #F8FAFC 0%, #FFFFFF 100%);
  border-color: #CBD5E1;
}

/* Plan Completo: gradient roxo+dourado destacado */
.plan-featured {
  border-color: var(--primary);
  background:
    linear-gradient(180deg, #FFFFFF 0%, #FBF6FF 60%, #FFF8E8 100%);
  box-shadow: var(--shadow-lg), 0 0 0 4px rgba(255, 184, 0, 0.1);
  transform: scale(1.03);
  position: relative;
  overflow: visible;
  padding-top: 44px;
}

.plan-featured::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--primary), var(--gold));
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.plan-featured .plan-tag {
  z-index: 5;
  box-shadow: 0 6px 14px rgba(255, 184, 0, 0.55);
}

/* Mockup pequeno centralizado dentro do plan featured */
.plan-hero-img {
  max-width: 200px;
  margin: 0 auto 18px;
  position: relative;
}

.plan-hero-img img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  box-shadow:
    0 14px 28px rgba(45, 27, 107, 0.22),
    0 4px 8px rgba(0, 0, 0, 0.08);
  transform: rotate(-2deg);
  transition: transform 0.3s ease;
}

.plan-hero-img img:hover {
  transform: rotate(0deg) scale(1.04);
}

.plan-tag {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold), #E6A300);
  color: white;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.5px;
  padding: 6px 18px;
  border-radius: 30px;
  box-shadow: 0 4px 10px rgba(255,184,0,0.4);
}

.plan-name {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: var(--primary-dark);
  text-align: center;
  margin-bottom: 16px;
}

.plan-price {
  text-align: center;
  margin-bottom: 22px;
}

.plan-price .old {
  font-size: 16px;
  color: var(--text-light);
  text-decoration: line-through;
  display: block;
  margin-bottom: 4px;
}

.plan-price .now {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 4px;
  color: var(--primary);
}

.plan-price .currency {
  font-family: 'Poppins', sans-serif;
  font-size: 28px;
  font-weight: 800;
  margin-top: 14px;
}

.plan-price .amount {
  font-family: 'Poppins', sans-serif;
  font-size: 76px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -3px;
}

.plan-price .once {
  display: block;
  font-size: 13px;
  color: var(--text-soft);
  margin-top: 6px;
  font-weight: 600;
}

.plan-includes {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
}

.plan-includes li {
  padding: 10px 0;
  font-size: 14.5px;
  color: var(--text);
  border-bottom: 1px dashed var(--border);
  line-height: 1.4;
}
.plan-includes li:last-child { border-bottom: none; }

/* Item excluído (no Plan Esencial) */
.plan-includes li.excl {
  color: #94a3b8;
  text-decoration: line-through;
  text-decoration-thickness: 1px;
  text-decoration-color: rgba(148, 163, 184, 0.5);
}

.plan-includes li.excl::first-letter {
  color: #DC2626;
  font-weight: 900;
}

.plan-includes li.incl {
  color: var(--text);
}

.plan-includes li.incl::first-letter {
  color: #16A34A;
  font-weight: 900;
}

.plan-includes li.bonus-item {
  background: linear-gradient(90deg, var(--gold-soft), transparent);
  padding: 10px 12px;
  margin: 4px -6px;
  border-radius: 8px;
  border-bottom: none;
}

.plan-card .btn { width: 100%; }

.plan-social {
  text-align: center;
  margin-top: 14px;
  font-size: 12px;
  color: var(--text-soft);
  font-weight: 600;
}

/* ============== GUARANTEE ============== */
.guarantee {
  padding: 70px 0;
  background: var(--bg-soft);
}

.guarantee-card {
  background: linear-gradient(135deg, #FFFBF2 0%, #FFF4D6 100%);
  border: 2px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: 36px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 28px;
  align-items: center;
  max-width: 920px;
  margin: 0 auto;
  box-shadow: 0 12px 32px rgba(255,184,0,0.15);
}

.g-shield {
  width: 100px; height: 100px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
  box-shadow: 0 8px 20px rgba(255,184,0,0.35);
}
.g-shield svg { width: 56px; height: 56px; }

.g-title {
  font-family: 'Poppins', sans-serif;
  font-size: 24px;
  font-weight: 900;
  color: var(--primary-dark);
  margin-bottom: 8px;
}

.g-text p {
  font-size: 15px;
  color: var(--text);
  line-height: 1.55;
}

/* ============== FAQ ============== */
.faq {
  padding: 90px 0;
  background: white;
}

.faq-list {
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  transition: all 0.2s ease;
}

.faq-item[open] {
  border-color: var(--primary);
  box-shadow: var(--shadow-sm);
}

.faq-item summary {
  padding: 18px 22px;
  cursor: pointer;
  font-weight: 700;
  font-size: 15px;
  color: var(--text);
  list-style: none;
  position: relative;
  padding-right: 50px;
}

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

.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  font-weight: 400;
  color: var(--primary);
  transition: transform 0.25s ease;
}
.faq-item[open] summary::after { transform: translateY(-50%) rotate(45deg); }

.faq-item p {
  padding: 0 22px 20px;
  font-size: 15px;
  color: var(--text-soft);
  line-height: 1.55;
}

/* ============== FOOTER ============== */
.footer {
  background: var(--bg-dark);
  color: rgba(255,255,255,0.85);
  padding: 50px 0 30px;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-logo {
  font-family: 'Poppins', sans-serif;
  font-size: 24px;
  font-weight: 900;
  margin-bottom: 10px;
  color: white;
}
.footer-logo .gold { color: var(--gold); }

.footer-brand p {
  font-size: 14px;
  line-height: 1.55;
  max-width: 480px;
  color: rgba(255,255,255,0.65);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
}

.footer-links a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s ease;
}
.footer-links a:hover { color: var(--gold); }

.footer-legal {
  padding-top: 26px;
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
}
.footer-legal p { margin-bottom: 8px; }
.disclaimer { opacity: 0.6; font-style: italic; }

/* ============== RESPONSIVE ============== */
@media (max-width: 960px) {
  .bubbles-grid { grid-template-columns: repeat(2, 1fr); }
  .audience-grid { grid-template-columns: 1fr; }
  .audience-featured { transform: none; }
  .bonus-grid { grid-template-columns: 1fr; max-width: 460px; margin: 20px auto 0; }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .hero { padding: 40px 0 50px; }
  .hero-plus { font-size: 76px; }
  .hero-title { font-size: 30px; }
  .hero-mockup { max-width: 320px; }
  .plans-grid { grid-template-columns: 1fr; gap: 18px; }
  .plan-featured { transform: none; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-links { align-items: flex-start; flex-direction: row; gap: 18px; }
  .guarantee-card { grid-template-columns: 1fr; text-align: center; }
  .g-shield { margin: 0 auto; }
  .m-slide { width: 340px; }

  /* Plan cards super compactos no mobile pra mostrar peek do próximo */
  .plans { padding: 50px 0 30px; }
  .plans-grid { gap: 10px; }
  .plan-card { padding: 18px 18px; }
  .plan-name { font-size: 15px; margin-bottom: 8px; }
  .plan-price { margin-bottom: 10px; }
  .plan-price .old { font-size: 13px; margin-bottom: 2px; }
  .plan-price .currency { font-size: 20px; margin-top: 8px; }
  .plan-price .amount { font-size: 48px; letter-spacing: -2px; }
  .plan-price .once { font-size: 11px; margin-top: 4px; }
  .plan-includes { margin: 0 0 14px; }
  .plan-includes li { padding: 4px 0; font-size: 13px; line-height: 1.3; }
  .plan-includes li.bonus-item { padding: 5px 8px; margin: 1px -3px; }
  .plan-card .btn { padding: 12px 22px; font-size: 13.5px; }
  .plan-tag { font-size: 10px; padding: 4px 12px; top: -10px; letter-spacing: 1.2px; }
  .plan-featured { padding-top: 24px; }
  .plan-hero-img { max-width: 120px; margin-bottom: 10px; }
  .plan-social { font-size: 11px; margin-top: 8px; }
  .section-head { margin-bottom: 24px; }
  .plans .section-head h2 { font-size: 22px; }
  .plans .section-head p { font-size: 14px; }
}

/* ============== TOUCH DEVICES: NO HOVER STICKY ============== */
@media (hover: none) {
  .bubble:hover,
  .audience-card:hover,
  .bonus-card:hover,
  .plan-card:hover,
  .testimonial-card:hover,
  .m-slide:hover,
  .faq-item:hover,
  .btn:hover,
  .btn-cta:hover,
  .btn-primary:hover,
  .btn-outline:hover,
  .plan-hero-img img:hover {
    transform: none !important;
    filter: inherit !important;
    transition: none !important;
  }
  .bubble, .audience-card, .bonus-card, .plan-card,
  .testimonial-card, .m-slide, .btn,
  .hero-mockup img, .plan-hero-img img {
    transition: none !important;
  }
  /* Animação shine do CTA não trava, mas reduz */
  .btn-cta::before { animation-duration: 5s; }
  /* Marquee continua rodando sempre, mesmo em touch */
  .marquee:hover .marquee-track { animation-play-state: running !important; }
}

@media (max-width: 480px) {
  .bubbles-grid { grid-template-columns: 1fr; max-width: 360px; margin: 0 auto; }
  .testimonials-grid { grid-template-columns: 1fr; max-width: 380px; margin: 0 auto; }
  .hero-title { font-size: 26px; }
  .hero-plus { font-size: 64px; }
  .plan-price .amount { font-size: 60px; }
  .transition h2 { font-size: 24px; }
  .m-slide { width: 280px; }
}
