@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@600;700;800&family=Inter:wght@400;500;600&display=swap');

/* ══════════════════════════════════════════
   DESIGN TOKENS (PREMIUM SaaS THEME)
══════════════════════════════════════════ */
:root {
  --primary:   #6C4CF1;   /* Roxo SaaS */
  --secondary: #1E88E5;   /* Azul Royal */
  --success:   #2ECC71;   /* Verde Apoio */
  --accent:    #FFC107;   /* Amarelo Suave - Destaque */
  
  --purple:    var(--primary);
  --blue:      var(--secondary);
  --green:     var(--success);
  --yellow:    var(--accent);
  --orange:    #F36B21;

  --gradient-main: linear-gradient(135deg, #6C4CF1, #1E88E5, #2ECC71);

  /* Sombras SaaS Premium */
  --shadow-sm:  0 2px 8px rgba(0,0,0,0.04);
  --shadow:     0 10px 30px rgba(0,0,0,0.05);
  --shadow-lg:  0 20px 50px -12px rgba(108, 76, 241, 0.15);
  
  --font-h: 'Manrope', sans-serif;
  --font-b: 'Inter', sans-serif;

  --r-sm:   8px;
  --r-md:   12px;        /* Raio de Botão */
  --r-lg:   16px;        /* Raio de Card Style Behance */
  --r-xl:   24px;
  --r-full: 9999px;

  --text-main: #111827;
  --text-secondary: #6B7280;
  --text:      var(--text-main);
  --muted:     var(--text-secondary);
  
  --bg:        #F5F7FA;   /* Fundo Principal */
  --bg-card:   #FFFFFF;
  --border:    rgba(0,0,0,0.05);

  --lilac:     #A78BFA;
  --navy:      #0F172A;
}

/* ══ RESET ══ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; overflow-x: hidden; }
body  { font-family: var(--font-b); color: var(--text); background: var(--bg); overflow-x: hidden; -webkit-font-smoothing: antialiased; }
img   { max-width: 100%; height: auto; display: block; }
a     { text-decoration: none; color: inherit; }
ul    { list-style: none; }

/* ══ LAYOUT — CONTAINER SEMPRE CENTRALIZADO ══ */
.container {
  width: 100%;
  max-width: 900px;
  margin-inline: auto;
  padding-inline: 1.5rem;
}
section {
  padding-block: clamp(4rem, 8vw, 6rem); /* Espaçamento generoso solicitado */
}
section:nth-of-type(even) {
  background-color: var(--bg);
}
section:nth-of-type(odd) {
  background-color: #ffffff;
}

/* Containers mais largos para grids de cards */
.container--wide {
  max-width: 1100px;
  margin-inline: auto;
  padding-inline: 1.5rem;
  text-align: center;
}

.section { padding-block: 5rem; }
@media(min-width:640px){ .section { padding-block: 6rem; } }

/* ══ TIPOGRAFIA ══ */
h1, h2, h3, h4 { font-family: var(--font-h); font-weight: 800; line-height: 1.2; text-align: center; }
h1 { font-size: clamp(1.9rem, 4.5vw, 3rem); }
h2 { font-size: clamp(1.55rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1rem, 2.5vw, 1.35rem); }
p  { font-size: 1rem; line-height: 1.75; }

/* ══ GRADIENT TEXTS ══ */
.grad-orange { background: var(--gradient-main); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; }
.grad-purple { background: linear-gradient(135deg, var(--primary), var(--secondary)); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; }
.grad-mint   { background: linear-gradient(135deg, var(--green), #00F5A0); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; }

/* ══ BOTÕES ══ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  font-family: var(--font-h);
  font-weight: 700;
  border-radius: var(--r-md); /* 12px conforme solicitado */
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  letter-spacing: -0.01em;
}
.btn-hero {
  background: var(--gradient-main);
  color: #fff;
  font-size: clamp(1rem, 2.5vw, 1.15rem);
  padding: 1.1rem 2.8rem;
  width: 100%;
  max-width: 520px;
  box-shadow: var(--shadow-lg);
}
.btn-hero:hover { 
  transform: translateY(-4px); 
  filter: brightness(1.1); 
  box-shadow: 0 15px 40px rgba(108, 76, 241, 0.25);
}
.btn-sm { padding: 0.65rem 1.6rem !important; font-size: 0.88rem !important; width: auto !important; }

.btn-white {
  background: #fff;
  color: var(--primary);
  font-size: clamp(1rem, 2.5vw, 1.15rem);
  padding: 1.1rem 2.8rem;
  width: 100%;
  max-width: 520px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}
.btn-white:hover { 
  transform: translateY(-4px); 
  box-shadow: var(--shadow);
  border-color: var(--primary);
}

@keyframes pulse-hero {
  0%,100% { box-shadow: 0 8px 32px -4px rgba(255,107,53,.45); }
  50%      { box-shadow: 0 8px 48px -2px rgba(255,107,53,.65); }
}

/* Wrapper centralizador de botão */
.btn-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .8rem;
  margin-top: 2rem;
}
.btn-security {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  font-size: .82rem;
  color: var(--muted);
}

/* ══ LABELS ══ */
.label {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-family: var(--font-h);
  font-weight: 700;
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  padding: .35rem 1rem;
  border-radius: var(--r-full);
  margin-bottom: 1rem;
}
.label-orange { background: #FFF0EB; color: var(--orange-d); }
.label-purple { background: #F0EBFF; color: var(--purple-d); }
.label-mint   { background: #E8FBF9; color: var(--mint-d);   }
.label-blue   { background: #E8F5FF; color: var(--blue-d);   }
.label-yellow { background: #FFFBE8; color: #B8860B;         }

/* ══ SECTION HEADER ══ */
.sec-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.sec-header p {
  color: var(--muted);
  max-width: 600px;
  margin: 1rem auto 0;
  font-size: 1.05rem;
  line-height: 1.7;
}

/* ══ CHECK ICON ══ */
.check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.check svg { width: 11px; height: 11px; stroke: #fff; }
.check-orange { background: var(--orange); }
.check-mint   { background: var(--mint);   }
.check-purple { background: var(--purple); }

/* ══ STARS ══ */
.stars { color: #FFD93D; font-size: 1rem; letter-spacing: 1px; }

/* ══════════════════════════════════════════
   PROGRESS BAR & CONFETTI
══════════════════════════════════════════ */
.progress-bar {
  position: fixed;
  top: 0; left: 0;
  height: 4px;
  background: var(--gradient-main);
  z-index: 9999;
  transition: width .1s linear;
  width: 0;
}
#confetti-canvas {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 999;
  display: none;
}

/* ══ HEADER (GLASSMORPHISM) ══ */
.main-header {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px) saturate(180%);
  -webkit-backdrop-filter: blur(12px) saturate(180%);
  padding-block: 0.6rem;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 30px rgba(0,0,0,0.03);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo img {
  height: 56px;
  width: auto;
  object-fit: contain;
}
@media (max-width: 640px) {
  .header__cta { display: none; }
  .header__inner { justify-content: center; }
  .logo img { height: 72px; } /* Logo estilo Large conforme solicitado */
  .main-header { padding-block: 0.4rem; }
}

/* ══════════════════════════════════════════
   TOP BAR
══════════════════════════════════════════ */
.topbar {
  background: linear-gradient(90deg, #A78BFA, var(--primary)); /* Gradiente Lilás SaaS */
  color: #fff;
  text-align: center;
  padding: .75rem 1rem;
  font-size: .88rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  box-shadow: 0 2px 10px rgba(108, 76, 241, 0.2);
}
.topbar strong { color: var(--accent); }

/* ══════════════════════════════════════════
   HERO — COLUNA ÚNICA, TOTALMENTE CENTRALIZADO
══════════════════════════════════════════ */
.hero {
  background: radial-gradient(circle at top right, rgba(108, 76, 241, 0.05), transparent 400px), 
              radial-gradient(circle at bottom left, rgba(30, 136, 229, 0.05), transparent 400px),
              #fff;
  padding-top: 5rem;
  padding-bottom: 2rem;
  overflow: hidden;
  position: relative;
}
@media (max-width: 640px) {
  .hero { padding-top: 0.8rem; }
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Ccircle cx='30' cy='30' r='1.5' fill='%236C4CF1' fill-opacity='0.1'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.hero__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
  text-align: center;
  position: relative;
  z-index: 1;
}
@media (max-width: 640px) {
  .hero__inner { gap: 1rem; }
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  background: #EDE9FE; /* Lilás bem suave */
  border: 1px solid var(--lilac);
  color: var(--primary);
  padding: .5rem 1.4rem;
  border-radius: var(--r-full);
  font-size: .88rem;
  font-weight: 700;
  font-family: var(--font-h);
  margin-bottom: 1.5rem;
}
@media (max-width: 640px) {
  .hero__badge { margin-bottom: 0.3rem; }
}

.hero__content {
  max-width: 720px;
  width: 100%;
}

.hero__content h1 {
  margin-bottom: 1.25rem;
}

.hero__subtitle {
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.75;
  max-width: 620px;
  margin: 0 auto 1.5rem;
}

/* Bullets centralizados com texto alinhado à esquerda */
.hero__bullets {
  display: inline-flex;
  flex-direction: column;
  gap: .8rem;
  text-align: left;
  margin: 0 auto 0;
}
.hero__bullet {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  font-size: .98rem;
  font-weight: 500;
}

/* Contadores */
.hero__counter-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 3rem;
  margin-top: 1.75rem;
}
.hero__counter { text-align: center; }
.hero__counter-num {
  font-family: var(--font-h);
  font-weight: 900;
  font-size: 1.8rem;
  color: var(--orange);
  line-height: 1;
}
.hero__counter-label {
  font-size: .78rem;
  color: var(--muted);
  margin-top: .25rem;
}

/* Imagem hero — centralizada, largura generosa */
.hero__image {
  width: 100%;
  max-width: 700px;
  position: relative;
}
.hero__image img {
  width: 100%;
  border-radius: var(--r-xl) var(--r-xl) 0 0;
  display: block;
  margin: 0 auto;
}

/* Float badges sobre a imagem */
.hero__float {
  position: absolute;
  border-radius: var(--r-lg);
  background: #fff;
  box-shadow: var(--shadow-lg);
  padding: .65rem 1.1rem;
  font-family: var(--font-h);
  font-weight: 700;
  font-size: .8rem;
  display: flex;
  align-items: center;
  gap: .4rem;
  animation: float-card 4s ease-in-out infinite;
  z-index: 2;
}
.hero__float--1 { top: 8%;  left: 2%;  animation-delay: 0s;    }
.hero__float--2 { top: 38%; right: 2%; animation-delay: 1.5s;  }
.hero__float--3 { bottom: 22%; left: 4%; animation-delay: .8s; }
@keyframes float-card { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }

/* ══════════════════════════════════════════
   PROOF BAR
══════════════════════════════════════════ */
.proof-bar {
  background: #fff;
  border-top: 1px solid #F0EBFF;
  border-bottom: 1px solid #F0EBFF;
  padding: 1.25rem 0;
}
.proof-bar__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .75rem 2.5rem;
  max-width: 1100px;
  margin: 0 auto;
  padding-inline: 1.5rem;
}
.proof-item {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .9rem;
  font-weight: 600;
}
.proof-item__icon { font-size: 1.3rem; }

/* ══════════════════════════════════════════
   PROBLEM SECTION
══════════════════════════════════════════ */
.problem-section { background: #FFF5F5; }

.pain-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin: 2.5rem auto 0;
  max-width: 900px;
}

.pain-card {
  background: #fff;
  border-radius: var(--r-lg);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: .75rem;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--rose);
  transition: transform .25s, box-shadow .25s;
}
.pain-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.pain-icon  { font-size: 2.2rem; line-height: 1; }
.pain-card h3 { margin-bottom: .25rem; }
.pain-card p  { color: var(--muted); font-size: .9rem; }

.solution-box {
  background: rgba(46, 204, 113, 0.1);
  border: 2px solid var(--green);
  border-radius: var(--r-xl);
  padding: 2.5rem 2rem;
  text-align: center;
  color: var(--navy);
  margin: 2.5rem auto 0;
  max-width: 760px;
}
.solution-box h3 { color: var(--green); font-size: clamp(1.2rem, 2.5vw, 1.65rem); margin-bottom: 1rem; }
.solution-box p  { opacity: 1; font-size: 1rem; font-weight: 600; color: var(--navy); }

/* ══════════════════════════════════════════
   COMO AJUDA
══════════════════════════════════════════ */
.helps-section { background: var(--bg); }

.helps-image {
  width: 100%;
  max-width: 640px;
  margin: 0 auto 3rem;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.helps-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}
.helps-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: #fff;
  border-radius: var(--r-lg);
  padding: 1.25rem;
  box-shadow: var(--shadow);
  border: 1.5px solid var(--border);
}
.helps-item__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}
.helps-item h3 { font-size: 1rem; margin-bottom: .25rem; text-align: left; }
.helps-item p  { font-size: .9rem; color: var(--muted); }

/* ══════════════════════════════════════════
   KIT — TABS INTERATIVOS
══════════════════════════════════════════ */
.kit-section { background: linear-gradient(160deg, #F0EEFF 0%, #E8F9FF 100%); }

.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}
.tab-btn {
  font-family: var(--font-h);
  font-weight: 700;
  font-size: .88rem;
  padding: .65rem 1.5rem;
  border-radius: var(--r-full);
  border: 2px solid var(--border);
  background: #fff;
  cursor: pointer;
  transition: all .2s;
  color: var(--muted);
}
.tab-btn:hover  { border-color: var(--purple); color: var(--purple); }
.tab-btn.active { background: var(--purple); border-color: var(--purple); color: #fff; box-shadow: 0 4px 16px rgba(150,120,216,.4); }

.tab-content { display: none; }
.tab-content.active {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
  animation: fadeIn .4s ease;
  max-width: 760px;
  margin: 0 auto;
}
@keyframes fadeIn { from{opacity:0;transform:translateY(10px)} to{opacity:1;transform:translateY(0)} }

.kit-image {
  width: 100%;
  max-width: 600px;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.kit-info { width: 100%; text-align: center; }
.kit-info h3 { margin: 0 auto 1rem; font-size: clamp(1.3rem, 3vw, 1.7rem); }
.kit-info p  { color: var(--muted); line-height: 1.75; max-width: 580px; margin: 0 auto; }

.kit-items {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  margin: 1.5rem auto 0;
  max-width: 560px;
  text-align: left;
}
.kit-item {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  font-size: .95rem;
  font-weight: 500;
}
.kit-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple), var(--blue));
  color: #fff;
  font-family: var(--font-h);
  font-weight: 800;
  font-size: .82rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ══════════════════════════════════════════
   BÔNUS EXTRAS
══════════════════════════════════════════ */
.extras-section { background: linear-gradient(135deg, #FFF5EE, #F5EEFF); }

.extras-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  max-width: 900px;
  margin: 0 auto;
}
.extra-card {
  background: var(--bg-card);
  border-radius: var(--r-lg);
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.25rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.extra-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.extra-card__img {
  width: 110px;
  height: 110px;
  object-fit: cover;
  border-radius: var(--r-md);
}
.extra-card__free {
  display: inline-block;
  font-size: .72rem;
  font-weight: 800;
  font-family: var(--font-h);
  text-transform: uppercase;
  background: var(--green);
  color: #fff;
  padding: .2rem .7rem;
  border-radius: var(--r-full);
  letter-spacing: .06em;
}
.extra-card h3 { font-size: 1.05rem; }
.extra-card p  { font-size: .9rem; color: var(--muted); line-height: 1.65; }

/* ══════════════════════════════════════════
   BÔNUS DETALHADOS — GRID DE 3 ITENS
══════════════════════════════════════════ */
.bonus-detailed-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 3rem;
}

.bonus-item {
  background: var(--bg-card);
  border-radius: var(--r-lg);
  padding: 2.5rem 1.75rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border);
  position: relative;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.bonus-item:hover { 
  transform: translateY(-8px); 
  box-shadow: var(--shadow);
  border-color: var(--primary);
}

.bonus-item__num {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 44px;
  height: 44px;
  background: var(--gradient-main);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-h);
  font-weight: 800;
  font-size: 1.25rem;
  box-shadow: 0 8px 20px rgba(108, 76, 241, 0.2);
}

.bonus-item__img {
  width: 100%;
  max-width: 280px;
  height: auto;
  border-radius: var(--r-md);
  margin: 0 auto 1.5rem;
  display: block;
}

.bonus-item__content h3 { margin-bottom: 1rem; color: var(--text); padding-top: 0.5rem; }
.bonus-item__content p { font-size: 0.95rem; color: var(--muted); margin-bottom: 1rem; }

.bonus-sublist {
  text-align: left;
  display: inline-block;
  margin: 0 auto 1rem;
}
.bonus-sublist li {
  font-size: 0.9rem;
  color: var(--text);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.bonus-extra-info {
  background: #FFFBE8;
  border-radius: var(--r-md);
  padding: 1rem;
  font-size: 0.85rem;
  color: #B8860B;
  border: 1px dashed #FFD93D;
  margin-top: 1rem;
  text-align: left;
}

/* Preço no Bônus */
.bonus-price {
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px dashed var(--border);
  text-align: center;
}
.bonus-price__old {
  display: block;
  font-size: 0.85rem;
  color: var(--muted);
  text-decoration: line-through;
  margin-bottom: 2px;
}
.bonus-price__free {
  display: block;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--success);
  font-family: var(--font-h);
}

/* ══════════════════════════════════════════
   RESOURCES GRID (O QUE ESTÁ INCLUSO)
══════════════════════════════════════════ */
.resources-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 800px;
  margin: 2rem auto 0;
  text-align: left;
}

.resources-list {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.resources-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 600;
  font-size: 1rem;
  color: var(--text);
}
.resources-list li span { color: var(--green); font-size: 1.2rem; }

/* ══════════════════════════════════════════
   IDEAL GRID (PARA QUEM É)
══════════════════════════════════════════ */
.ideal-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.ideal-card {
  background: #fff;
  border-radius: var(--r-lg);
  padding: 1.5rem 1rem;
  box-shadow: var(--shadow);
  text-align: center;
  border: 1.5px solid var(--border);
}
.ideal-icon {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
}
.ideal-card h3 { font-size: 1.1rem; margin-bottom: 0.25rem; }
.ideal-card p { font-size: 0.85rem; color: var(--muted); }

/* ══════════════════════════════════════════
   DEPOIMENTOS 
══════════════════════════════════════════ */
.testimonials-section { background: var(--bg); }

.t-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  max-width: 900px;
  margin: 0 auto;
}
.t-card {
  background: #fff;
  border-radius: var(--r-lg);
  padding: 1.5rem;
  border: 1.5px solid var(--border);
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform .2s;
}
.t-card:hover { transform: translateY(-4px); }
.t-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .75rem;
  margin-bottom: 1rem;
}
.t-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--border);
  margin: 0 auto;
}
.t-name { font-weight: 800; font-size: 1rem; }
.t-role { font-size: .82rem; color: var(--muted); }
.t-text {
  font-size: .93rem;
  color: #444;
  line-height: 1.75;
  font-style: italic;
}
.t-text::before { content: '"'; }
.t-text::after  { content: '"'; }

/* ══════════════════════════════════════════
   GARANTIA
══════════════════════════════════════════ */
.guarantee-section { background: linear-gradient(135deg, #E8FBF9, #F0FFF4); }

.guarantee-box {
  background: #fff;
  border-radius: var(--r-xl);
  padding: 3rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  text-align: center;
  box-shadow: var(--shadow-lg);
  border: 2px solid rgba(78,205,196,.3);
  max-width: 720px;
  margin: 0 auto;
}
.guarantee-box img { width: 160px; height: 160px; object-fit: contain; margin: 0 auto; }
.guarantee-box h2 { color: var(--mint-d); }
.guarantee-box p  { color: var(--muted); max-width: 520px; margin: 0 auto; }

.guarantee-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .75rem;
  margin-top: .5rem;
}
.g-badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: #E8FBF9;
  color: var(--mint-d);
  font-weight: 700;
  font-size: .85rem;
  padding: .4rem 1rem;
  border-radius: var(--r-full);
  font-family: var(--font-h);
}

/* ══════════════════════════════════════════
   FINAL CTA
══════════════════════════════════════════ */
.final-section {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-lt) 60%, #3D2C8D 100%);
  color: #fff;
  padding-block: 5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-section::before, .final-section::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  opacity: .08;
}
.final-section::before { width: 500px; height: 500px; top: -200px; right: -150px; background: var(--purple); }
.final-section::after  { width: 400px; height: 400px; bottom: -180px; left: -150px; background: var(--blue); }
.final-section > .container { position: relative; z-index: 1; }

.final-img {
  max-width: 480px;
  margin: 0 auto 2.5rem;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,.4);
}
.final-section h2 { color: #fff; }
.final-section .subtitle {
  color: rgba(255,255,255,.78);
  max-width: 500px;
  margin: .75rem auto 0;
}

.price-box {
  display: inline-block;
  background: rgba(255,255,255,.1);
  border: 1.5px solid rgba(255,255,255,.22);
  backdrop-filter: blur(10px);
  border-radius: var(--r-lg);
  padding: 1.5rem 3rem;
  margin: 2rem auto;
}
.price-from  { font-size: .85rem; color: rgba(255,255,255,.6); text-decoration: line-through; margin-bottom: .25rem; }
.price-main  { font-family: var(--font-h); font-weight: 900; color: var(--yellow); line-height: 1; }
.price-main .cur { font-size: 1.4rem; vertical-align: super; margin-right: 2px; }
.price-main .val { font-size: 3.2rem; }
.price-note  { font-size: .82rem; color: rgba(255,255,255,.65); margin-top: .3rem; }

.final-section .btn-security {
  color: rgba(255,255,255,.65);
  justify-content: center;
}

/* ══════════════════════════════════════════
   FAQ
══════════════════════════════════════════ */
.faq-section { background: #F8F6FF; }

.faq-list {
  max-width: 740px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: .9rem;
}
.faq-item {
  background: #fff;
  border-radius: var(--r-md);
  border: 1.5px solid var(--border);
  overflow: hidden;
}
.faq-q {
  width: 100%;
  text-align: left;
  padding: 1.15rem 1.25rem;
  font-family: var(--font-h);
  font-weight: 700;
  font-size: .97rem;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  color: var(--text);
  transition: background .2s;
}
.faq-q:hover { background: #F8F6FF; }
.faq-q svg  { flex-shrink: 0; transition: transform .3s; color: var(--purple); }
.faq-item.open .faq-q svg { transform: rotate(180deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .25s;
  padding: 0 1.25rem;
  font-size: .93rem;
  color: var(--muted);
  line-height: 1.75;
  text-align: left;
}
.faq-item.open .faq-a { max-height: 300px; padding: 0 1.25rem 1.25rem; }

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
footer {
  background: var(--navy);
  color: rgba(255,255,255,.5);
  text-align: center;
  padding: 2.5rem 1.25rem;
  font-size: .82rem;
}
footer strong { color: rgba(255,255,255,.85); }
footer a { color: rgba(255,255,255,.55); }
footer a:hover { color: #fff; }
.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .5rem 1.5rem;
  margin-bottom: 1rem;
}

/* ══════════════════════════════════════════
   PRICING OFFERS (OFERTAS)
══════════════════════════════════════════ */
.pricing-section {
  padding: 5rem 1rem;
  background: var(--bg);
}
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 900px;
  margin: 3rem auto 0;
}
.pricing-card {
  background: var(--bg-card);
  border-radius: var(--r-lg);
  padding: 3rem 2rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.pricing-card.highlighted {
  border: 2px solid var(--green);
  box-shadow: 0 10px 30px rgba(0, 192, 115, 0.15);
}
.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--green);
  color: #fff;
  font-weight: 800;
  padding: 4px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  white-space: nowrap;
}
.p-title { font-size: 1.5rem; text-align: center; margin-bottom: 0.5rem; }
.p-desc { text-align: center; color: var(--muted); font-size: 0.95rem; margin-bottom: 1.5rem; min-height: 44px; }
.p-price { text-align: center; margin-bottom: 1.5rem; }
.p-price .cur { font-weight: 700; font-size: 1.2rem; vertical-align: top; }
.p-price .val { font-weight: 900; font-size: 3.5rem; line-height: 1; color: var(--text); }
.p-price .cents { font-weight: 700; font-size: 1.2rem; vertical-align: top; }
.p-features { list-style: none; margin-bottom: 2rem; flex-grow: 1; padding:0; }
.p-features li { padding: 0.6rem 0; font-size: 0.95rem; border-bottom: 1px solid var(--border); }
.p-features li.disabled { opacity: 0.4; text-decoration: line-through; }
.btn-outline {
  display: inline-flex; justify-content: center; align-items: center;
  background: transparent; color: var(--text); font-weight: 800;
  border: 2px solid var(--border); border-radius: var(--r-full);
  padding: 1rem 2rem; text-decoration: none; transition: all 0.2s;
}
.btn-outline:hover { border-color: var(--text); background: var(--bg); }

@media(min-width: 768px) {
  .pricing-grid { grid-template-columns: repeat(2, 1fr); align-items: stretch; }
  .pricing-card.highlighted { transform: scale(1.04); }
}

/* ══════════════════════════════════════════
   PAYMENT TRUST BADGES
══════════════════════════════════════════ */
.payment-trust {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 1.25rem;
}
.payment-icons {
  display: flex;
  gap: 0.75rem;
  font-size: 1.7rem;
  margin-bottom: 0.25rem;
  background: rgba(255,255,255,0.1);
  padding: 6px 16px;
  border-radius: 8px;
}

/* ══════════════════════════════════════════
   STICKY MOBILE CTA
══════════════════════════════════════════ */
.sticky-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 200;
  background: #fff;
  border-top: 1px solid var(--border);
  padding: .8rem 1.25rem;
  box-shadow: 0 -4px 20px rgba(0,0,0,.1);
  display: none;
}
.sticky-cta .btn-hero { max-width: 100%; font-size: 1rem; padding: .9rem 1.5rem; }
@media(max-width:639px) {
  .sticky-cta { display: block; }
  body { padding-bottom: 80px; }
}

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media(min-width:640px) {
  .pain-grid    { grid-template-columns: repeat(2, 1fr); }
  .helps-list   { grid-template-columns: repeat(2, 1fr); }
  .bonus-detailed-grid { grid-template-columns: repeat(2, 1fr); }
  .resources-grid { grid-template-columns: repeat(2, 1fr); }
  .ideal-grid   { grid-template-columns: repeat(3, 1fr); }
  .t-grid       { grid-template-columns: repeat(2, 1fr); }
}

@media(min-width:900px) {
  .bonus-detailed-grid { grid-template-columns: repeat(3, 1fr); }
  .ideal-grid   { grid-template-columns: repeat(5, 1fr); }
  .t-grid       { grid-template-columns: repeat(4, 1fr); }
  .hero__float--1,
  .hero__float--2,
  .hero__float--3 { display: flex; }
}

@media(max-width:899px) {
  .hero__float--1,
  .hero__float--2,
  .hero__float--3 { display: none; }
}

/* ══ ANIMATIONS ══ */
@keyframes fade-up {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fade-up .65s ease forwards; opacity: 0; animation-play-state: paused; }
.d1 { animation-delay: .15s; }
.d2 { animation-delay: .30s; }
.d3 { animation-delay: .45s; }
.d4 { animation-delay: .60s; }
