/* ============================================================
   CSS VARIABLES — PALETA DE CORES PRESERVADA
   ============================================================ */
:root {
  --color-bg-dark:     #1a1a2e;
  --color-bg-darker:   #12121f;
  --color-bg-light:    #f5f5f5;
  --color-bg-card:     #222238;
  --color-bg-card-alt: #2a2a42;
  --color-accent:      #e8a000;
  --color-accent-hover:#ffb800;
  --color-accent-light:#fff3cc;
  --color-primary:     #ff6b00;
  --color-primary-hover:#ff8c2a;
  --color-text-light:  #ffffff;
  --color-text-muted:  #b0b0c8;
  --color-text-dark:   #1a1a2e;
  --color-green:       #27ae60;
  --color-red:         #e74c3c;
  --color-border:      rgba(232,160,0,0.25);
  --color-premium-border: #e8a000;
  --color-premium-glow:   rgba(232,160,0,0.18);

  --font-heading:  'Montserrat', sans-serif;
  --font-body:     'Inter', sans-serif;

  --radius-sm:  8px;
  --radius-md:  14px;
  --radius-lg:  20px;
  --radius-xl:  28px;

  --shadow-card:    0 4px 24px rgba(0,0,0,0.30);
  --shadow-premium: 0 0 0 3px var(--color-premium-border), 0 8px 32px rgba(232,160,0,0.22);

  --space-section-v: 64px;
  --space-inner-v:   32px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--color-bg-dark);
  color: var(--color-text-light);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

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

/* ============================================================
   CONTAINER — RESPIRO LATERAL GENEROSO NO MOBILE
   ============================================================ */
.container {
  width: 100%;
  max-width: 820px;
  margin: 0 auto;
  padding: 0 20px;   /* padrão mobile: 20px de cada lado */
}

@media (max-width: 400px) {
  .container { padding: 0 16px; }
}

/* ============================================================
   BARRA SUPERIOR
   ============================================================ */
.top-bar {
  background: var(--color-primary);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 16px;
  text-align: center;
  line-height: 1.4;
}

.top-bar__icon { font-size: 0.9rem; flex-shrink: 0; }

/* ============================================================
   BOTÕES
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: none;
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: background 0.22s, transform 0.18s, box-shadow 0.22s;
  padding: 18px 28px;
  line-height: 1.2;
}

.btn--primary {
  background: linear-gradient(135deg, var(--color-primary) 0%, #ff9000 100%);
  color: #fff;
  box-shadow: 0 6px 24px rgba(255,107,0,0.45);
}
.btn--primary:hover {
  background: linear-gradient(135deg, var(--color-primary-hover) 0%, #ffaa00 100%);
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(255,107,0,0.55);
}
.btn--primary:active { transform: translateY(0); }

.btn--secondary {
  background: transparent;
  color: var(--color-text-light);
  border: 2px solid rgba(255,255,255,0.35);
}
.btn--secondary:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.6);
}

.btn--large { font-size: 1.05rem; padding: 20px 32px; }

.btn--full {
  width: 100%;
  display: flex;
}

@media (max-width: 480px) {
  .btn { font-size: 0.92rem; padding: 17px 22px; }
  .btn--large { font-size: 0.98rem; padding: 19px 24px; }
}

/* ============================================================
   SEÇÕES — ESTRUTURA BASE
   ============================================================ */
.section {
  padding: var(--space-section-v) 0;
}

.section--dark  { background: var(--color-bg-dark); }
.section--light { background: var(--color-bg-light); color: var(--color-text-dark); }
.section--offer { background: var(--color-bg-darker); }

.section__label {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent);
  text-align: center;
  margin-bottom: 12px;
}

.urgency-label { color: var(--color-primary); }

.section__title {
  font-family: var(--font-heading);
  font-size: clamp(1.55rem, 5vw, 2.2rem);
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
  margin-bottom: 16px;
}

.section--light .section__title { color: var(--color-text-dark); }

.section__title--offer { color: var(--color-text-light); }

.section__intro {
  font-size: 1rem;
  line-height: 1.65;
  text-align: center;
  max-width: 560px;
  margin: 0 auto 32px;
  color: var(--color-text-muted);
}

.section--light .section__intro { color: #444; }

.highlight { color: var(--color-accent); }

.transition-bridge {
  margin-top: 32px;
  font-size: 1rem;
  line-height: 1.65;
  text-align: center;
  color: var(--color-text-muted);
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.07);
}

.section--light .transition-bridge {
  color: #555;
  border-top-color: rgba(0,0,0,0.08);
}

.transition-bridge strong { color: var(--color-text-light); }
.section--light .transition-bridge strong { color: var(--color-text-dark); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  background: linear-gradient(160deg, var(--color-bg-darker) 0%, var(--color-bg-dark) 60%, #1e1e38 100%);
  padding: 56px 0 64px;
  text-align: center;
}

.hero__badge {
  display: inline-block;
  background: var(--color-accent);
  color: var(--color-text-dark);
  font-family: var(--font-heading);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 100px;
  padding: 6px 18px;
  margin-bottom: 20px;
}

.hero__headline {
  font-family: var(--font-heading);
  font-size: clamp(1.9rem, 7vw, 3rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 18px;
  letter-spacing: -0.01em;
}

.hero__subheadline {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 3.5vw, 1.5rem);
  font-weight: 700;
  line-height: 1.35;
  color: var(--color-text-muted);
  margin-bottom: 16px;
}

.hero__subheadline strong { color: var(--color-text-light); }

.hero__statement {
  font-size: 0.98rem;
  color: var(--color-text-muted);
  line-height: 1.65;
  margin-bottom: 28px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

/* VSL */
.vsl-placeholder {
  background: var(--color-bg-card);
  border: 2px dashed var(--color-border);
  border-radius: var(--radius-md);
  padding: 48px 24px;
  margin: 0 auto 28px;
  max-width: 480px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.vsl-placeholder__icon { font-size: 2.8rem; color: var(--color-accent); }
.vsl-placeholder__text { font-size: 0.9rem; color: var(--color-text-muted); font-weight: 600; }

/* Social proof */
.social-proof {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: rgba(232,160,0,0.1);
  border: 1px solid var(--color-border);
  border-radius: 100px;
  padding: 10px 20px;
  font-size: 0.9rem;
  max-width: 440px;
  margin: 0 auto 24px;
  flex-wrap: wrap;
  text-align: center;
  line-height: 1.45;
}

.social-proof__icon { color: var(--color-accent); font-size: 1rem; flex-shrink: 0; }

/* Hero bullets */
.hero__bullets {
  list-style: none;
  text-align: left;
  max-width: 380px;
  margin: 0 auto 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hero__bullets li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.97rem;
  line-height: 1.45;
}

.hero__bullets li .fa-check-circle { color: var(--color-green); font-size: 1.05rem; flex-shrink: 0; margin-top: 2px; }

.hero__guarantee-note {
  margin-top: 14px;
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

.hero__guarantee-note .fa-shield-alt { color: var(--color-green); margin-right: 4px; }

/* ============================================================
   CARDS GRID (dor e benefícios)
   ============================================================ */
.cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 16px;
}

@media (min-width: 640px) {
  .cards-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; }
}

.card {
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  transition: transform 0.22s;
  overflow: hidden;
}

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

/* Cards de dor: mantém padding interno */
.card--pain {
  background: var(--color-bg-card);
  border-top: 3px solid var(--color-primary);
  padding: 28px 22px;
}

/* Cards de benefício: imagem no topo, conteúdo abaixo */
.card--benefit {
  background: var(--color-bg-light);
  border-top: 3px solid var(--color-accent);
  color: var(--color-text-dark);
  position: relative;
  padding: 0;
}

/* Wrapper da imagem nos cards de benefício */
.card__img-wrap {
  width: 100%;
  height: 180px;
  overflow: hidden;
  background: #e0e0e0;
}

.card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.4s ease;
}

.card:hover .card__img { transform: scale(1.04); }

/* Corpo do card (ícone + título + texto) — abaixo da imagem */
.card__body {
  padding: 20px 20px 22px;
}

.card__badge {
  position: absolute;
  top: 10px;
  right: 12px;
  background: var(--color-accent);
  color: var(--color-text-dark);
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 100px;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(0,0,0,0.18);
}

.card__icon {
  font-size: 1.6rem;
  margin-bottom: 10px;
}

.card--pain .card__icon    { color: var(--color-primary); }
.card--benefit .card__icon { color: var(--color-accent); }

.card__title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.3;
}

.card--benefit .card__title { color: var(--color-text-dark); }

.card__text {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--color-text-muted);
}

.card--benefit .card__text { color: #555; }

/* ============================================================
   STAMP BAR
   ============================================================ */
.stamp-bar {
  background: var(--color-primary);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-align: center;
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  margin-bottom: 32px;
  line-height: 1.4;
}

/* ============================================================
   BÔNUS
   ============================================================ */
.bonus-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 36px;
}

.bonus-item {
  background: var(--color-bg-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.bonus-item__label {
  background: var(--color-accent);
  color: var(--color-text-dark);
  font-family: var(--font-heading);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 16px;
}

/* Corpo do bônus: imagem de capa à esquerda + conteúdo à direita */
.bonus-item__body {
  display: flex;
  align-items: stretch;
  gap: 0;
}

/* Capa do bônus */
.bonus-item__cover {
  flex-shrink: 0;
  width: 110px;
  overflow: hidden;
  background: #1a1a2e;
}

.bonus-item__cover-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.4s ease;
}

.bonus-item:hover .bonus-item__cover-img { transform: scale(1.05); }

/* Conteúdo textual do bônus */
.bonus-item__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 18px 18px 18px 16px;
  flex: 1;
}

.bonus-item__icon {
  font-size: 1.4rem;
  color: var(--color-accent);
  margin-bottom: 8px;
}

.bonus-item__title {
  font-family: var(--font-heading);
  font-size: 0.98rem;
  font-weight: 700;
  margin-bottom: 6px;
  line-height: 1.3;
}

.bonus-item__text {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

.cta-block {
  text-align: center;
}

@media (max-width: 400px) {
  .bonus-item__cover { width: 88px; }
  .bonus-item__content { padding: 14px 14px 14px 12px; }
}

/* ============================================================
   COMO FUNCIONA — STEPS
   ============================================================ */
.steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 0 0 32px;
}

.step {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: #fff;
  border-radius: var(--radius-md);
  padding: 22px 20px;
  box-shadow: 0 2px 14px rgba(0,0,0,0.08);
}

.step__number {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--color-primary);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step__title {
  font-family: var(--font-heading);
  font-size: 0.97rem;
  font-weight: 700;
  color: var(--color-text-dark);
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.step__title i { color: var(--color-primary); }

.step__text {
  font-size: 0.88rem;
  color: #555;
  line-height: 1.55;
}

/* Trust strip */
.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  align-items: center;
  padding: 18px 0 0;
  border-top: 1px solid rgba(0,0,0,0.1);
  font-size: 0.85rem;
  font-weight: 600;
  color: #666;
}

.trust-strip i { color: var(--color-primary); margin-right: 5px; }

/* ============================================================
   DEPOIMENTOS
   ============================================================ */
.testimonials {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.testimonial {
  background: var(--color-bg-card-alt);
  border-left: 3px solid var(--color-accent);
  border-radius: var(--radius-md);
  padding: 18px 20px 18px;
}

/* Header do depoimento: avatar + nome + estrelas */
.testimonial__header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}

.testimonial__avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  flex-shrink: 0;
  border: 2.5px solid var(--color-accent);
  background: var(--color-bg-card);
  object-fit: cover;
  object-position: center top;
  box-shadow: 0 2px 8px rgba(0,0,0,0.35);
}

.testimonial__meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.testimonial__author-name {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--color-text-light);
}

.testimonial__stars {
  font-size: 0.82rem;
  line-height: 1;
}

.testimonial__text {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--color-text-muted);
  margin-bottom: 0;
}

.testimonial__text strong { color: var(--color-text-light); }

/* ============================================================
   OFERTA DIRETA — PLANOS
   ============================================================ */
.countdown {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 16px auto 24px;
}

.countdown__block {
  text-align: center;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 12px 18px;
  min-width: 72px;
}

.countdown__number {
  display: block;
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 900;
  color: var(--color-primary);
  line-height: 1;
}

.countdown__label {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-top: 4px;
}

.countdown__sep {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 900;
  color: var(--color-primary);
  line-height: 1;
  margin-bottom: 16px;
}

.offer__subtitle {
  text-align: center;
  font-size: 0.95rem;
  color: var(--color-text-muted);
  margin-bottom: 32px;
}

/* Planos */
.plans {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 640px;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .plans { flex-direction: row; align-items: flex-start; }
}

.plan {
  flex: 1;
  border-radius: var(--radius-lg);
  overflow: visible;
  position: relative;
  padding: 28px 24px 24px;
  background: var(--color-bg-card);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Plano Premium — destaque visual sem mudar paleta */
.plan--premium {
  border: 2px solid var(--color-premium-border);
  box-shadow: var(--shadow-premium);
}

.plan--basic {
  border: 1px solid rgba(255,255,255,0.1);
}

/* Selo "MAIS POPULAR" */
.plan__popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-accent);
  color: var(--color-text-dark);
  font-family: var(--font-heading);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 18px;
  border-radius: 100px;
  white-space: nowrap;
  box-shadow: 0 2px 12px rgba(232,160,0,0.3);
}

.plan__header {
  text-align: center;
  padding-bottom: 16px;
  margin-bottom: 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.plan__name {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 800;
  color: var(--color-text-light);
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}

.plan__focus {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  line-height: 1.4;
}

/* PREÇO — destaque no topo do card, abaixo do header */
.plan__price-block {
  text-align: center;
  padding: 20px 0 16px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 16px;
}

.plan__price-old {
  display: block;
  font-size: 0.85rem;
  color: var(--color-text-muted);
  text-decoration: line-through;
  margin-bottom: 4px;
}

.plan__price-current {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 7vw, 2.8rem);
  font-weight: 900;
  color: var(--color-accent);
  line-height: 1;
  margin-bottom: 6px;
}

.plan--premium .plan__price-current { color: var(--color-primary); }

.plan__price-note {
  display: block;
  font-size: 0.72rem;
  color: var(--color-text-muted);
  text-transform: lowercase;
}

/* Benefícios abaixo do preço */
.plan__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 22px;
  flex: 1;
}

.plan__features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--color-text-muted);
  line-height: 1.45;
}

.plan__features li strong { color: var(--color-text-light); }

.plan__features li .fa-check        { color: var(--color-green); font-size: 0.85rem; flex-shrink: 0; margin-top: 2px; }
.plan__features li .fa-check-circle  { color: var(--color-green); font-size: 0.9rem;  flex-shrink: 0; margin-top: 2px; }
.plan__features li .fa-times        { color: var(--color-red);   font-size: 0.85rem; flex-shrink: 0; margin-top: 2px; }

.plan__feature--no { opacity: 0.55; }

/* ---- LISTA PREMIUM expandida ---- */
.plan__features--premium {
  gap: 0;
}

/* Item base (herda do plano básico) */
.plan__feature--base {
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  font-size: 0.88rem;
  color: var(--color-text-muted);
}

/* Divisor "BÔNUS EXCLUSIVOS" */
.plan__feature--divider {
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: linear-gradient(90deg, rgba(232,160,0,0.18) 0%, rgba(232,160,0,0.08) 100%);
  border: 1px solid rgba(232,160,0,0.35);
  border-radius: var(--radius-sm);
  padding: 8px 12px !important;
  margin: 10px 0 6px;
  font-family: var(--font-heading);
  font-size: 0.68rem !important;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--color-accent) !important;
  text-align: center;
}

/* Item de bônus — destaque laranja-dourado */
.plan__feature--bonus {
  display: flex !important;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 10px;
  background: rgba(255,107,0,0.07);
  border-left: 3px solid var(--color-primary);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin-bottom: 4px;
  font-size: 0.88rem !important;
  color: var(--color-text-light) !important;
  line-height: 1.45;
}

.plan__feature--bonus .fa-gift {
  color: var(--color-primary);
  font-size: 0.95rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.plan__feature--bonus strong { color: var(--color-accent); }

/* Item de troféu — destaque final */
.plan__feature--highlight {
  display: flex !important;
  align-items: center;
  gap: 10px;
  padding: 10px 0 2px;
  border-top: 1px solid rgba(232,160,0,0.2);
  margin-top: 6px;
  font-size: 0.88rem !important;
  color: var(--color-accent) !important;
  font-weight: 600;
}

.plan__feature--highlight .fa-trophy {
  color: var(--color-accent);
  font-size: 0.95rem;
  flex-shrink: 0;
}

.offer__trust {
  text-align: center;
  margin-top: 24px;
  font-size: 0.82rem;
  color: var(--color-text-muted);
}

.offer__trust i { color: var(--color-green); margin-right: 4px; }

/* ============================================================
   GARANTIA
   ============================================================ */
.guarantee-box {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex;
  align-items: flex-start;
  gap: 24px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  max-width: 620px;
  margin: 0 auto;
}

/* ---- Selo de Garantia 7 Dias — Badge Premium ---- */
.guarantee-seal {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Camada externa: polígono estrelado via clip-path */
.guarantee-badge__outer {
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, #27ae60 0%, #1e8449 50%, #145a32 100%);
  clip-path: polygon(
    50% 0%, 61% 10%, 74% 6%, 79% 18%,
    93% 20%, 92% 34%, 100% 43%, 93% 53%,
    97% 67%, 85% 73%, 84% 87%, 70% 88%,
    63% 100%, 50% 95%, 37% 100%, 30% 88%,
    16% 87%, 15% 73%, 3% 67%, 7% 53%,
    0% 43%, 8% 34%, 7% 20%, 21% 18%,
    26% 6%, 39% 10%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 6px 24px rgba(39,174,96,0.45);
  animation: badgePulse 3s ease-in-out infinite;
}

@keyframes badgePulse {
  0%, 100% { box-shadow: 0 6px 24px rgba(39,174,96,0.45); transform: scale(1); }
  50% { box-shadow: 0 8px 32px rgba(39,174,96,0.65); transform: scale(1.03); }
}

.guarantee-badge__mid {
  width: 104px;
  height: 104px;
  background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
  clip-path: polygon(
    50% 0%, 61% 10%, 74% 6%, 79% 18%,
    93% 20%, 92% 34%, 100% 43%, 93% 53%,
    97% 67%, 85% 73%, 84% 87%, 70% 88%,
    63% 100%, 50% 95%, 37% 100%, 30% 88%,
    16% 87%, 15% 73%, 3% 67%, 7% 53%,
    0% 43%, 8% 34%, 7% 20%, 21% 18%,
    26% 6%, 39% 10%
  );
  display: flex;
  align-items: center;
  justify-content: center;
}

.guarantee-badge__inner {
  width: 88px;
  height: 88px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  text-align: center;
  padding: 6px;
  box-shadow: inset 0 2px 8px rgba(0,0,0,0.12);
}

.guarantee-badge__shield {
  font-size: 0.75rem;
  color: var(--color-green);
  margin-bottom: 1px;
}

.guarantee-badge__num {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 900;
  color: var(--color-green);
  line-height: 1;
  letter-spacing: -0.03em;
}

.guarantee-badge__dias {
  font-family: var(--font-heading);
  font-size: 0.65rem;
  font-weight: 800;
  color: var(--color-green);
  letter-spacing: 0.1em;
  line-height: 1;
  margin-bottom: 2px;
}

.guarantee-badge__line {
  display: block;
  width: 40px;
  height: 1px;
  background: rgba(39,174,96,0.3);
  margin: 2px auto;
}

.guarantee-badge__sub {
  font-family: var(--font-heading);
  font-size: 0.5rem;
  font-weight: 800;
  color: #555;
  letter-spacing: 0.12em;
  line-height: 1;
  margin-bottom: 1px;
}

.guarantee-badge__refund {
  font-family: var(--font-heading);
  font-size: 0.45rem;
  font-weight: 700;
  color: #888;
  letter-spacing: 0.06em;
  line-height: 1.2;
  text-align: center;
}

/* Conteúdo textual */
.guarantee-box__content {
  flex: 1;
}

.guarantee-box__title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--color-text-dark);
  margin-bottom: 10px;
  line-height: 1.25;
}

.guarantee-box__text {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.65;
  margin-bottom: 8px;
}

/* Variante com apenas o selo + info estruturada */
.guarantee-box--seal-only {
  align-items: center;
}

/* Aviso legal */
.guarantee-box__law {
  font-family: var(--font-heading);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-green);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.guarantee-box__law i { font-size: 0.75rem; }

/* Título com highlight */
.guarantee-highlight { color: var(--color-green); }

/* Lista de benefícios do selo */
.guarantee-box__items {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 12px 0 14px;
}

.guarantee-box__items li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: #444;
  line-height: 1.5;
}

.guarantee-box__items li .fa-check-circle {
  color: var(--color-green);
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.guarantee-box__items li strong { color: var(--color-text-dark); }

/* Frase de encerramento */
.guarantee-box__stamp {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--color-text-dark);
  padding-top: 10px;
  border-top: 1px solid rgba(0,0,0,0.08);
  letter-spacing: 0.02em;
}

@media (max-width: 480px) {
  .guarantee-box {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 28px 20px;
  }
  .guarantee-badge__outer { width: 108px; height: 108px; }
  .guarantee-badge__mid  { width: 93px;  height: 93px;  }
  .guarantee-badge__inner { width: 78px; height: 78px;  }
  .guarantee-badge__num { font-size: 1.75rem; }
}

.guarantee-box__text strong { color: var(--color-text-dark); }

@media (max-width: 480px) {
  .guarantee-box { flex-direction: column; gap: 14px; padding: 24px 20px; }
  .guarantee-box__icon { margin: 0 auto; }
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-list {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  background: var(--color-bg-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.07);
}

.faq-item__question {
  width: 100%;
  background: none;
  border: none;
  color: var(--color-text-light);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  text-align: left;
  padding: 18px 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  line-height: 1.45;
  transition: background 0.2s;
}

.faq-item__question:hover { background: rgba(255,255,255,0.04); }

.faq-item__icon {
  flex-shrink: 0;
  font-size: 0.85rem;
  color: var(--color-accent);
  transition: transform 0.3s;
}

.faq-item__question[aria-expanded="true"] .faq-item__icon { transform: rotate(180deg); }

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.36s ease, padding 0.3s;
}

.faq-item__answer.open {
  max-height: 300px;
  padding-bottom: 4px;
}

.faq-item__answer p {
  padding: 0 20px 18px;
  font-size: 0.88rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}

.faq-item__answer p strong { color: var(--color-text-light); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--color-bg-darker);
  padding: 28px 0;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.06);
  /* padding-bottom extra para sticky CTA no mobile */
  padding-bottom: 80px;
}

.footer__copy { font-size: 0.78rem; color: var(--color-text-muted); }

/* ============================================================
   STICKY CTA MOBILE
   ============================================================ */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 10px 16px 12px;
  background: linear-gradient(0deg, rgba(18,18,31,0.98) 80%, transparent);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s;
}

.sticky-cta.visible {
  opacity: 1;
  pointer-events: auto;
}

/* Ocultar sticky-cta em desktop */
@media (min-width: 768px) {
  .sticky-cta { display: none; }
  .footer { padding-bottom: 28px; }
}

/* ============================================================
   UPSELL MODAL
   ============================================================ */

/* Overlay */
.upsell-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 20, 0.82);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.upsell-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

/* Caixa do modal */
.upsell-modal {
  background: var(--color-bg-card);
  border: 2px solid var(--color-premium-border);
  box-shadow: 0 0 0 4px var(--color-premium-glow), 0 24px 64px rgba(0,0,0,0.7);
  border-radius: var(--radius-xl);
  padding: 36px 28px 28px;
  max-width: 420px;
  width: 100%;
  position: relative;
  text-align: center;
  transform: translateY(28px) scale(0.97);
  transition: transform 0.32s cubic-bezier(0.34,1.36,0.64,1), opacity 0.3s ease;
  max-height: 92vh;
  overflow-y: auto;
}

.upsell-overlay.active .upsell-modal {
  transform: translateY(0) scale(1);
}

/* Botão fechar */
.upsell-modal__close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: rgba(255,255,255,0.08);
  border: none;
  color: var(--color-text-muted);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
}
.upsell-modal__close:hover { background: rgba(255,255,255,0.15); color: #fff; }

/* Ícone topo */
.upsell-modal__icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary), #ff9000);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  font-size: 1.3rem;
  color: #fff;
  box-shadow: 0 4px 18px rgba(255,107,0,0.45);
}

/* Badge */
.upsell-modal__badge {
  display: inline-block;
  background: linear-gradient(90deg, var(--color-primary), #ff9800);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 100px;
  margin-bottom: 14px;
}

/* Título */
.upsell-modal__title {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 4vw, 1.35rem);
  font-weight: 900;
  line-height: 1.2;
  color: var(--color-text-light);
  margin-bottom: 12px;
}

.upsell-highlight { color: var(--color-accent); }

/* Corpo */
.upsell-modal__body {
  font-size: 0.92rem;
  color: var(--color-text-muted);
  line-height: 1.65;
  margin-bottom: 16px;
}

.upsell-modal__body strong { color: var(--color-text-light); }

.upsell-price {
  color: var(--color-primary);
  font-size: 1.05rem;
}

/* Lista de bônus */
.upsell-modal__list {
  list-style: none;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 20px;
  background: rgba(255,107,0,0.07);
  border-left: 3px solid var(--color-primary);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 14px 16px;
}

.upsell-modal__list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--color-text-muted);
  line-height: 1.45;
}

.upsell-modal__list li .fa-gift {
  color: var(--color-primary);
  flex-shrink: 0;
  margin-top: 2px;
  font-size: 0.9rem;
}

.upsell-modal__list li strong { color: var(--color-text-light); }

/* Bloco de preço */
.upsell-modal__pricing {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  margin-bottom: 20px;
  padding: 14px;
  background: var(--color-bg-darker);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
}

.upsell-modal__price-old {
  font-size: 0.82rem;
  color: var(--color-text-muted);
  text-decoration: line-through;
}

.upsell-modal__price-new {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--color-primary);
  line-height: 1;
}

.upsell-modal__price-note {
  font-size: 0.7rem;
  color: var(--color-text-muted);
}

/* CTA principal */
.upsell-modal__cta {
  font-size: 0.92rem;
  padding: 18px 20px;
  margin-bottom: 12px;
}

/* Link de recusa */
.upsell-modal__decline {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 0.78rem;
  color: var(--color-text-muted);
  text-decoration: underline;
  text-underline-offset: 3px;
  padding: 4px;
  transition: color 0.2s;
  display: block;
  width: 100%;
  text-align: center;
}

.upsell-modal__decline:hover { color: var(--color-text-light); }

/* Mobile: modal ocupa mais altura sem cortar */
@media (max-width: 480px) {
  .upsell-modal { padding: 32px 20px 24px; }
}

/* ============================================================
   ANIMAÇÕES DE ENTRADA
   ============================================================ */
.fade-in {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   UTILITÁRIOS
   ============================================================ */
@media (max-width: 480px) {
  .section { padding: 48px 0; }
  .hero { padding: 44px 0 52px; }
  .hero__headline { font-size: clamp(1.65rem, 8vw, 2.2rem); }
  .section__title { font-size: clamp(1.4rem, 6vw, 1.8rem); }
  .plan { padding: 24px 18px 20px; }
  .plan__price-current { font-size: 2.2rem; }
}
