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

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', sans-serif;
  background-color: #ffffff;
  color: #111827;
  -ms-overflow-style: none;
  scrollbar-width: none;
  -webkit-font-smoothing: antialiased;
}
body::-webkit-scrollbar { display: none; }

img { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; border: none; }
ul { list-style: none; }

/* ===== LAYOUT ===== */
.container { width: 100%; margin-left: auto; margin-right: auto; padding-left: 1rem; padding-right: 1rem; }
.container-sm  { max-width: 42rem; }
.container-md  { max-width: 56rem; }
.container-lg  { max-width: 72rem; }

/* ===== ANIMATIONS ===== */
@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes scale-pulse {
  0%, 100% { transform: scale(1); }
  50%       { transform: scale(1.05); }
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}

.animate-marquee    { animation: marquee 50s linear infinite; }
.animate-scale-pulse{ animation: scale-pulse 2s ease-in-out infinite; }
.animate-bounce     { animation: bounce 1.2s ease-in-out infinite; }

/* ===== COUNTDOWN BAR ===== */
#countdown-bar {
  background-color: #D92525;
  color: #fff;
  padding: 0.75rem 1rem;
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 2px 6px rgba(0,0,0,.25);
}
#countdown-bar .inner {
  max-width: 56rem;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}
#countdown-bar svg {
  width: 1.5rem;
  height: 1.5rem;
  color: #f9a8d4;
  fill: #ec4899;
  flex-shrink: 0;
}
#countdown-bar .label {
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1;
  text-align: center;
}
.mobile-br { display: block; }
.timer-display { display: flex; align-items: center; gap: 0.5rem; }
.timer-box {
  background: #fff;
  color: #D92525;
  border-radius: 0.5rem;
  padding: 0.25rem 0.5rem;
  font-weight: 900;
  font-size: 1.5rem;
  min-width: 44px;
  text-align: center;
  box-shadow: 0 1px 3px rgba(0,0,0,.15);
}
.timer-colon { font-weight: 900; font-size: 1.5rem; padding-bottom: 4px; }

/* ===== HERO ===== */
#hero { background: #fff; padding: 3rem 1rem 2rem; }
#hero .inner { max-width: 72rem; margin: 0 auto; text-align: center; }
#hero h1 {
  font-size: clamp(2rem, 7vw, 4.5rem);
  font-weight: 900;
  color: #111827;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 2.5rem;
}
#hero h1 .blue { color: #0EA5E9; }
#hero h1 .highlight {
  position: relative;
  display: inline-block;
  z-index: 1;
}
#hero h1 .highlight::after {
  content: '';
  position: absolute;
  bottom: 0.3rem;
  left: 0;
  width: 100%;
  height: 0.75rem;
  background: rgba(14,165,233,.2);
  z-index: -1;
  border-radius: 2px;
  transform: skewX(12deg);
}

.btn-cta-blue {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: #0EA5E9;
  color: #fff;
  font-weight: 900;
  font-size: clamp(1.1rem, 3vw, 1.5rem);
  padding: 1rem 2rem;
  border-radius: 9999px;
  box-shadow: 0 10px 25px rgba(14,165,233,.35);
  transition: background .2s, transform .2s;
  margin-bottom: 2.5rem;
  text-decoration: none;
}
.btn-cta-blue:hover { background: #0284C7; }

.phone-mockup {
  position: relative;
  width: 100%;
  max-width: 18rem;
  margin: 0 auto;
  aspect-ratio: 9/16;
  background: #000;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0,0,0,.5);
  border: 4px solid #374151;
  cursor: pointer;
}
.phone-mockup .glow {
  position: absolute;
  width: 10rem;
  height: 10rem;
  background: rgba(14,116,144,.4);
  filter: blur(50px);
  border-radius: 50%;
  pointer-events: none;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -60%);
}
.phone-mockup .play-btn {
  position: relative;
  z-index: 2;
  width: 6rem;
  height: 6rem;
  background: #0e7490;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 4px;
  box-shadow: 0 10px 25px rgba(0,0,0,.4);
  transition: transform .3s;
  margin-bottom: 1rem;
}
.phone-mockup:hover .play-btn { transform: scale(1.08); }
.phone-mockup .play-btn svg { width: 2.5rem; height: 2.5rem; fill: #fff; color: #fff; }
.phone-mockup .phone-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.phone-mockup .emoji { font-size: 2.5rem; margin-bottom: 0.5rem; position: relative; z-index: 2; }
.phone-mockup p {
  color: #fff;
  font-weight: 900;
  font-size: 1.25rem;
  text-align: center;
  padding: 0 1rem;
  line-height: 1.3;
  position: relative;
  z-index: 2;
  text-shadow: 0 2px 8px rgba(0,0,0,.5);
}

/* ===== FEATURES ===== */
#features { background: #fff; padding: 0.5rem 1rem 2rem; }
#features .inner { max-width: 42rem; margin: 0 auto; display: flex; flex-direction: column; align-items: center; gap: 1rem; }
.feature-pill {
  background: #10B981;
  border-radius: 9999px;
  padding: 0.5rem 2rem 0.5rem 0.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: 0 4px 12px rgba(16,185,129,.3);
  transition: transform .2s;
  width: auto;
  max-width: 100%;
}
.feature-pill:hover { transform: translateY(-3px); }
.feature-pill .icon-wrap {
  background: rgba(255,255,255,.2);
  padding: 0.5rem;
  border-radius: 50%;
  display: flex;
  flex-shrink: 0;
}
.feature-pill .icon-wrap svg { width: 1.5rem; height: 1.5rem; color: #fff; stroke-width: 3; }
.feature-pill span { color: #fff; font-weight: 700; font-size: 0.95rem; line-height: 1.3; text-align: left; }

.features-text { max-width: 42rem; text-align: center; margin: 2.5rem auto 1.5rem; }
.features-text p { color: #4B5563; font-size: 1.1rem; line-height: 1.7; }
.features-text .blue { color: #0EA5E9; font-weight: 700; }

.btn-cta-green {
  display: block;
  background: #22C55E;
  color: #fff;
  font-weight: 900;
  font-size: clamp(1rem, 3vw, 1.5rem);
  padding: 1rem 1.5rem;
  border-radius: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 0 #15803d;
  transition: box-shadow .15s, transform .15s, background .15s;
  text-align: center;
  text-decoration: none;
  line-height: 1.3;
  width: 100%;
  max-width: 28rem;
  margin: 0 auto;
}
.btn-cta-green:hover {
  background: #16A34A;
  box-shadow: 0 2px 0 #15803d;
  transform: translateY(2px);
}

/* ===== PROBLEM ===== */
#problem { background: #fff; padding: 2rem 1rem; }
#problem .inner { max-width: 42rem; margin: 0 auto; text-align: center; }
#problem h2 { font-size: 1.875rem; font-weight: 900; color: #111827; margin-bottom: 0.5rem; }
#problem h2 .blue { color: #0EA5E9; }
#problem .subtitle { color: #4B5563; font-size: 1.125rem; margin-bottom: 2.5rem; }
.problem-list { display: flex; flex-direction: column; gap: 1rem; }
.problem-item {
  background: #FEF2F2;
  border: 1px solid #FECACA;
  border-radius: 1rem;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  text-align: left;
  box-shadow: 0 1px 4px rgba(0,0,0,.05);
}
.problem-item .x-icon {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  background: #fff;
  border-radius: 50%;
  border: 1px solid #FECACA;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #DC2626;
}
.problem-item .x-icon svg { width: 1.5rem; height: 1.5rem; stroke-width: 3; }
.problem-item span { color: #7F1D1D; font-weight: 700; font-size: 1.125rem; line-height: 1.3; }

/* ===== SOLUTION ===== */
#solution { background: #fff; padding: 2rem 1rem; text-align: center; }
#solution .inner { max-width: 42rem; margin: 0 auto; }
#solution h2 { font-size: 2.25rem; font-weight: 900; color: #111827; margin-bottom: 1.5rem; }
#solution p { font-size: 1.25rem; color: #374151; line-height: 1.7; margin-bottom: 2rem; }
#solution .green { color: #10B981; font-weight: 900; }
#solution .green-bold { color: #10B981; font-weight: 700; }
.badge-urgency {
  display: inline-block;
  background: #DC2626;
  color: #fff;
  font-weight: 700;
  font-size: 0.875rem;
  text-transform: uppercase;
  padding: 0.5rem 1.5rem;
  border-radius: 9999px;
}

/* ===== BONUS ===== */
#bonus { background: #fff; padding: 1.5rem 1rem; }
#bonus .inner { max-width: 72rem; margin: 0 auto; }
.bonus-header { text-align: center; margin-bottom: 1.5rem; }
.bonus-header .icon-row { display: flex; align-items: center; justify-content: center; gap: 0.5rem; margin-bottom: 0.5rem; }
.bonus-header .icon-row svg { width: 1.25rem; height: 1.25rem; color: #EAB308; }
.bonus-header h2 { font-size: clamp(1.25rem, 3vw, 1.5rem); font-weight: 900; text-transform: uppercase; color: #111827; }

.bonus-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
@media (min-width: 768px) {
  .bonus-grid { grid-template-columns: repeat(4, 1fr); gap: 1rem; }
}
.bonus-card {
  background: #fff;
  border-radius: 0.75rem;
  box-shadow: 0 2px 8px rgba(0,0,0,.1);
  border: 1px solid #F3F4F6;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.bonus-card .bonus-img { aspect-ratio: 16/9; width: 100%; object-fit: cover; background: #f3f4f6; display: block; }
.bonus-card .bonus-body {
  padding: 0.75rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  gap: 0.5rem;
}
.bonus-card h4 { font-weight: 700; color: #1F2937; font-size: 0.8rem; line-height: 1.4; flex: 1; display: flex; align-items: center; }
.bonus-card .value-row { font-size: 0.625rem; font-weight: 700; color: #9CA3AF; text-transform: uppercase; }
.bonus-card .value-row s { color: #F87171; font-size: 0.75rem; text-decoration: line-through; }
.bonus-card .btn-free {
  width: 100%;
  background: #22C55E;
  color: #fff;
  font-weight: 700;
  font-size: 0.75rem;
  padding: 0.375rem;
  border-radius: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: background .2s;
}
.bonus-card .btn-free:hover { background: #16A34A; }

.bonus-note {
  margin-top: 1.5rem;
  background: #EFF6FF;
  border: 1px solid #BFDBFE;
  border-radius: 0.5rem;
  padding: 0.75rem 1rem;
  text-align: center;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}
.bonus-note p { color: #1E3A8A; font-weight: 700; font-size: 0.9rem; line-height: 1.5; }
.bonus-note .blue { color: #0EA5E9; }

/* ===== PRICING ===== */
#pricing { background: #fff; padding: 2rem 1rem; position: relative; }
#pricing .inner { max-width: 56rem; margin: 0 auto; }
#pricing h2 { font-size: clamp(1.75rem, 5vw, 2.25rem); font-weight: 900; text-align: center; color: #111827; margin-bottom: 2rem; }
#pricing h2 .blue { color: #0EA5E9; }
.urgency-banner {
  background: #FFF5F5;
  border: 1px solid #FED7D7;
  border-radius: 0.75rem;
  padding: 0.75rem 1rem;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  box-shadow: 0 1px 4px rgba(0,0,0,.06);
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
  transition: transform .3s;
}
.urgency-banner:hover { transform: scale(1.02); }
.urgency-banner p { color: #7F1D1D; font-weight: 700; font-size: 0.9rem; }

.plans-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: start;
}
@media (min-width: 768px) {
  .plans-grid { grid-template-columns: 1fr 1fr; }
}

/* Basic */
.plan-basic {
  background: #F9FAFB;
  border-radius: 1.5rem;
  box-shadow: 0 4px 16px rgba(0,0,0,.1);
  border: 1px solid #E5E7EB;
  overflow: hidden;
}
.plan-basic .plan-body { padding: 2rem; display: flex; flex-direction: column; align-items: center; }
.plan-basic h3 { font-size: 1.25rem; font-weight: 900; color: #374151; text-transform: uppercase; margin-bottom: 0.25rem; }
.plan-basic .plan-sub { color: #6B7280; font-size: 0.875rem; margin-bottom: 1.5rem; }
.plan-price { text-align: center; margin-bottom: 1.5rem; }
.plan-price .from { color: #9CA3AF; font-size: 0.875rem; text-decoration: line-through; margin-bottom: 0.25rem; }
.plan-price .amount { display: flex; align-items: baseline; justify-content: center; gap: 0.25rem; }
.plan-price .currency { font-size: 1.5rem; font-weight: 900; color: #374151; }
.plan-price .value    { font-size: 3.75rem; font-weight: 900; color: #111827; line-height: 1; }
.plan-price .cents    { font-size: 1.875rem; font-weight: 900; color: #374151; }
.plan-price .once     { color: #6B7280; font-size: 0.875rem; margin-top: 0.25rem; }

.plan-features { width: 100%; margin-bottom: 2rem; }
.plan-features li { display: flex; align-items: center; gap: 0.75rem; color: #374151; font-weight: 500; padding: 0.375rem 0; }
.plan-features .check-icon { background: #10B981; border-radius: 50%; padding: 2px; display: flex; flex-shrink: 0; }
.plan-features .check-icon svg { width: 0.75rem; height: 0.75rem; color: #fff; stroke-width: 4; }

.btn-buy {
  width: 100%;
  background: #10B981;
  color: #fff;
  font-weight: 900;
  font-size: 1.5rem;
  padding: 1rem;
  border-radius: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 12px rgba(16,185,129,.3);
  transition: background .2s, transform .1s;
}
.btn-buy:hover  { background: #059669; }
.btn-buy:active { transform: scale(0.97); }

/* Complete */
.plan-complete {
  background: #F0F9FF;
  border-radius: 1.5rem;
  box-shadow: 0 8px 24px rgba(14,165,233,.15);
  border: 2px solid #0EA5E9;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 768px) {
  .plan-complete { transform: translateY(-1rem); }
}
.plan-badge {
  background: #0EA5E9;
  width: 100%;
  text-align: center;
  padding: 0.5rem;
  color: #fff;
  font-weight: 900;
  font-size: 0.875rem;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.plan-badge svg { width: 1rem; height: 1rem; fill: #fff; }
.plan-complete .plan-body { padding: 2rem; display: flex; flex-direction: column; align-items: center; width: 100%; }
.plan-complete h3 { font-size: 1.25rem; font-weight: 900; color: #111827; text-transform: uppercase; margin-bottom: 0.25rem; }
.plan-complete .plan-sub { color: #4B5563; font-size: 0.875rem; margin-bottom: 1rem; }
.plan-complete .plan-price .from { text-decoration-color: #DC2626; }
.plan-complete .plan-price .currency { color: #0EA5E9; }
.plan-complete .plan-price .value    { color: #0EA5E9; }
.plan-complete .plan-price .cents    { color: #0EA5E9; }

.coupon-badge {
  background: #DBEAFE;
  color: #1E40AF;
  font-size: 0.875rem;
  font-weight: 700;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  margin-bottom: 1.5rem;
}
.coupon-badge .blue { color: #0EA5E9; }

/* New complete plan styles */
.plan-complete-title {
  font-size: 1.75rem;
  font-weight: 900;
  color: #0EA5E9;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 0.25rem;
  letter-spacing: -0.01em;
}

.coupon-badge-green {
  background: #D1FAE5;
  color: #065F46;
  font-size: 0.95rem;
  font-weight: 700;
  padding: 0.4rem 1.2rem;
  border-radius: 9999px;
  margin-bottom: 1.25rem;
  display: inline-block;
}

.btn-acesso-vitalicio {
  width: 100%;
  background: #F5A623;
  color: #fff;
  font-weight: 900;
  font-size: 1.1rem;
  padding: 1rem 1.5rem;
  border-radius: 2rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  box-shadow: 0 5px 0 #C47D0A;
  margin-bottom: 1.5rem;
  cursor: default;
  text-shadow: 0 1px 2px rgba(0,0,0,0.15);
}
.btn-acesso-vitalicio:hover {
  box-shadow: 0 5px 0 #C47D0A;
  transform: none;
}

.dinamicas-heading {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  width: 100%;
}
.dinamicas-heading span {
  font-weight: 900;
  color: #10B981;
  font-size: 0.95rem;
}
.dinamicas-check {
  width: 1.5rem;
  height: 1.5rem;
  background: #10B981;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.dinamicas-list {
  width: 100%;
  margin-bottom: 1.25rem;
  padding-left: 0.25rem;
  list-style: disc;
  list-style-position: inside;
}
.dinamicas-list li {
  color: #374151;
  font-size: 0.9rem;
  padding: 0.2rem 0;
}

.bonus-box {
  width: 100%;
  background: #ffffff;
  border: 1px solid #E5E7EB;
  border-radius: 0.75rem;
  padding: 0.875rem 1rem;
  margin-bottom: 1.25rem;
}
.bonus-box-title {
  font-weight: 900;
  color: #DC2626;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}
.bonus-box-list { padding-left: 0; }
.bonus-box-list li { color: #374151; font-size: 0.8rem; padding: 0.15rem 0; }

.check-features { width: 100%; margin-top: 0.25rem; margin-bottom: 1.5rem; }
.check-features li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: #0EA5E9;
  font-weight: 700;
  font-size: 0.875rem;
  padding: 0.3rem 0;
}

.check-icon-circle {
  width: 1.4rem;
  height: 1.4rem;
  border-radius: 50%;
  flex-shrink: 0;
  background-color: #0EA5E9;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 55%;
}
.ci-users   { background-color: #60A5FA; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.5'%3E%3Cpath d='M17 21v-2a4 4 0 0 0-4-4H5a4 4 0 0 0-4 4v2'/%3E%3Ccircle cx='9' cy='7' r='4'/%3E%3Cpath d='M23 21v-2a4 4 0 0 0-3-3.87'/%3E%3Cpath d='M16 3.13a4 4 0 0 1 0 7.75'/%3E%3C/svg%3E"); }
.ci-book    { background-color: #34D399; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.5'%3E%3Cpath d='M2 3h6a4 4 0 0 1 4 4v14a3 3 0 0 0-3-3H2z'/%3E%3Cpath d='M22 3h-6a4 4 0 0 0-4 4v14a3 3 0 0 1 3-3h7z'/%3E%3C/svg%3E"); }
.ci-zap     { background-color: #FBBF24; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.5'%3E%3Cpolygon points='13 2 3 14 12 14 11 22 21 10 12 10 13 2'/%3E%3C/svg%3E"); }
.ci-download{ background-color: #60A5FA; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.5'%3E%3Cpath d='M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4'/%3E%3Cpolyline points='7 10 12 15 17 10'/%3E%3Cline x1='12' y1='15' x2='12' y2='3'/%3E%3C/svg%3E"); }
.ci-headphones { background-color: #A78BFA; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.5'%3E%3Cpath d='M3 18v-6a9 9 0 0 1 18 0v6'/%3E%3Cpath d='M21 19a2 2 0 0 1-2 2h-1a2 2 0 0 1-2-2v-3a2 2 0 0 1 2-2h3zM3 19a2 2 0 0 0 2 2h1a2 2 0 0 0 2-2v-3a2 2 0 0 0-2-2H3z'/%3E%3C/svg%3E"); }
.ci-shield  { background-color: #34D399; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.5'%3E%3Cpath d='M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10z'/%3E%3Cpath d='m9 12 2 2 4-4'/%3E%3C/svg%3E"); }

.btn-comprar-agora {
  margin-top: 0.5rem;
  font-size: 1.5rem;
  letter-spacing: 0.05em;
}

.complete-features { width: 100%; margin-bottom: 1rem; }
.complete-features .section-title { font-weight: 900; color: #1F2937; font-size: 0.875rem; text-transform: uppercase; margin-bottom: 0.75rem; }
.complete-features .section-sub { font-weight: 700; color: #374151; font-size: 0.875rem; margin-bottom: 0.5rem; }
.complete-features .dot-list { padding-left: 0.5rem; margin-bottom: 1rem; }
.complete-features .dot-list li { display: flex; align-items: center; gap: 0.5rem; color: #4B5563; font-size: 0.875rem; padding: 0.125rem 0; }
.complete-features .dot-list .dot { width: 6px; height: 6px; background: #0EA5E9; border-radius: 50%; flex-shrink: 0; }

.bonus-label { display: flex; align-items: center; gap: 0.5rem; color: #10B981; font-weight: 700; font-size: 0.875rem; margin-bottom: 0.5rem; }
.bonus-label svg { width: 1rem; height: 1rem; flex-shrink: 0; }
.bonus-simple-list li { color: #4B5563; font-size: 0.875rem; padding: 0.25rem 0; }

.check-blue { background: #0EA5E9; border-radius: 50%; padding: 4px; display: flex; flex-shrink: 0; }
.check-blue svg { width: 0.75rem; height: 0.75rem; color: #fff; stroke-width: 2.5; }

.secure-label { margin-top: 1rem; display: flex; align-items: center; justify-content: center; gap: 0.5rem; color: #9CA3AF; font-size: 0.75rem; }
.secure-label svg { color: #9CA3AF; }

/* ===== TESTIMONIALS ===== */
#testimonials { background: #fff; padding: 3rem 1rem; overflow: hidden; }
#testimonials .header { max-width: 42rem; margin: 0 auto 2.5rem; text-align: center; }
.testimonials-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #E0F2FE;
  color: #0369A1;
  font-weight: 700;
  padding: 0.5rem 1.5rem;
  border-radius: 9999px;
  font-size: 0.9rem;
  margin-bottom: 2rem;
}
#testimonials h2 { font-size: clamp(1.75rem, 5vw, 2.25rem); font-weight: 900; color: #111827; margin-bottom: 0.5rem; line-height: 1.2; }
#testimonials h2 .blue { color: #0EA5E9; }
#testimonials .hint { color: #9CA3AF; font-size: 0.875rem; }

.testimonials-track-wrap { position: relative; width: 100%; }
.testimonials-overflow { overflow: hidden; }
.testimonials-track {
  display: flex;
  gap: 1.5rem;
  min-width: max-content;
  align-items: center;
}
.testimonials-track-wrap:hover .testimonials-track { animation-play-state: paused; }
.testimonial-img { flex-shrink: 0; width: 260px; }
@media (min-width: 640px) { .testimonial-img { width: 320px; } }
.testimonial-img img {
  width: 100%;
  height: auto;
  border-radius: 1.5rem;
  box-shadow: 0 10px 25px rgba(0,0,0,.12);
  border: 4px solid #fff;
  transition: border-color .2s;
  cursor: pointer;
}
.testimonial-img img:hover { border-color: rgba(14,165,233,.2); }

/* ===== AUTHOR ===== */
#author { background: #fff; padding: 3rem 1rem; }
#author .inner { max-width: 42rem; margin: 0 auto; text-align: center; }
#author h2 { font-size: clamp(1.5rem, 4vw, 1.875rem); font-weight: 900; color: #111827; margin-bottom: 2rem; }
#author h2 .blue { color: #0EA5E9; }
.author-content { display: flex; flex-direction: column; align-items: center; gap: 1.5rem; }
.author-photo {
  width: 12rem;
  height: 12rem;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #0EA5E9;
  box-shadow: 0 10px 25px rgba(0,0,0,.15);
}
.author-text { text-align: left; max-width: 32rem; }
@media (min-width: 640px) { .author-text { text-align: center; } }
.author-text p { color: #374151; font-size: 1.125rem; line-height: 1.7; margin-bottom: 1rem; }
.author-text p:last-of-type { color: #4B5563; margin-bottom: 1.5rem; }
.author-stats { display: flex; flex-direction: column; gap: 1rem; align-items: center; }
@media (min-width: 640px) { .author-stats { flex-direction: row; justify-content: center; } }
.stat-box {
  background: #EFF6FF;
  border: 1px solid #BFDBFE;
  border-radius: 0.75rem;
  padding: 0.75rem 1rem;
  text-align: center;
  min-width: 10rem;
}
.stat-box .num { font-size: 1.5rem; font-weight: 900; color: #0EA5E9; }
.stat-box .desc { color: #4B5563; font-size: 0.875rem; font-weight: 700; }

/* ===== GUARANTEE ===== */
#guarantee { background: #F9FAFB; padding: 3rem 1rem; }
#guarantee .inner { max-width: 42rem; margin: 0 auto; text-align: center; }
.guarantee-card {
  background: #fff;
  border-radius: 1.5rem;
  box-shadow: 0 4px 16px rgba(0,0,0,.08);
  border: 1px solid #F3F4F6;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.guarantee-icon {
  width: 5rem;
  height: 5rem;
  background: #EFF6FF;
  border-radius: 50%;
  border: 4px solid #0EA5E9;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.guarantee-icon svg { width: 2.5rem; height: 2.5rem; }
.guarantee-card h2 { font-size: 1.875rem; font-weight: 900; color: #111827; margin-bottom: 1rem; }
.guarantee-card p { color: #4B5563; line-height: 1.7; margin-bottom: 0.5rem; }
.guarantee-card .fine { color: #9CA3AF; font-weight: 700; font-size: 0.875rem; }

/* ===== FAQ ===== */
#faq { background: #fff; padding: 2rem 1rem; }
#faq .inner { max-width: 42rem; margin: 0 auto; }
#faq h2 { font-size: 2.25rem; font-weight: 900; color: #111827; text-align: center; margin-bottom: 3rem; }
#faq h2 .blue { color: #0EA5E9; }
.faq-list { display: flex; flex-direction: column; gap: 1rem; }
.faq-item {
  background: #fff;
  border-radius: 0.75rem;
  box-shadow: 0 1px 4px rgba(0,0,0,.07);
  border: 1px solid #E5E7EB;
  overflow: hidden;
}
.faq-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem;
  text-align: left;
  font-weight: 700;
  color: #1F2937;
  background: transparent;
  transition: background .15s;
  gap: 1rem;
}
.faq-btn:hover { background: #F9FAFB; }
.faq-btn svg {
  flex-shrink: 0;
  width: 1.5rem;
  height: 1.5rem;
  color: #9CA3AF;
  transition: transform .2s;
}
.faq-btn[aria-expanded="true"] svg { transform: rotate(180deg); }
.faq-answer {
  display: none;
  padding: 1rem 1.25rem 1.25rem;
  color: #4B5563;
  line-height: 1.7;
  border-top: 1px solid #F3F4F6;
}
.faq-answer.open { display: block; }

/* ===== FINAL CTA ===== */
#final-cta { background: #fff; padding: 3rem 1rem; }
#final-cta .inner { max-width: 42rem; margin: 0 auto; text-align: center; }
#final-cta p { color: #6B7280; font-size: 0.875rem; margin-top: 1.5rem; line-height: 1.7; }

/* ===== FOOTER ===== */
footer { background: #fff; border-top: 1px solid #F3F4F6; padding: 2rem 1rem; }
footer .inner { max-width: 56rem; margin: 0 auto; text-align: center; }
footer p { color: #6B7280; font-size: 0.875rem; }
footer p + p { color: #9CA3AF; font-size: 0.75rem; margin-top: 0.25rem; }

/* ===== POPUP ===== */
.popup-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.popup-overlay.active {
  display: flex;
}
.popup-card {
  background: #fff;
  border-radius: 1.25rem;
  padding: 2rem 1.5rem 1.5rem;
  max-width: 420px;
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  max-height: 95vh;
  overflow-y: auto;
}
.popup-close {
  position: absolute;
  top: 0.75rem;
  right: 0.875rem;
  background: transparent;
  color: #9CA3AF;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  line-height: 1;
  padding: 0.25rem;
}
.popup-close:hover { color: #374151; }

.popup-badge {
  background: #FEE2E2;
  color: #DC2626;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.4rem 1rem;
  border-radius: 9999px;
  margin-bottom: 1.25rem;
}

.popup-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: #111827;
  line-height: 1.45;
  margin-bottom: 1.25rem;
}
.popup-red {
  color: #DC2626;
  font-weight: 900;
}

.popup-price-box {
  background: #F0F9FF;
  border-radius: 1rem;
  padding: 1rem 1.25rem;
  width: 100%;
  margin-bottom: 1rem;
}
.popup-price-label {
  color: #374151;
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
}
.popup-price-value {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.1rem;
  margin: 0.25rem 0;
}
.popup-currency {
  font-size: 1.1rem;
  font-weight: 900;
  color: #0EA5E9;
}
.popup-amount {
  font-size: 3rem;
  font-weight: 900;
  color: #0EA5E9;
  line-height: 1;
}
.popup-cents {
  font-size: 1.5rem;
  font-weight: 900;
  color: #0EA5E9;
}
.popup-price-from {
  color: #9CA3AF;
  font-size: 0.75rem;
}

.popup-feature {
  width: 100%;
  border-radius: 0.75rem;
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-align: left;
  margin-bottom: 0.625rem;
}
.popup-feature-green { background: #D1FAE5; }
.popup-feature-pink  { background: #FEE2E2; }
.popup-feat-icon { font-size: 1.4rem; flex-shrink: 0; }
.popup-feat-title {
  font-weight: 800;
  color: #111827;
  font-size: 0.9rem;
  margin-bottom: 0.15rem;
}
.popup-feat-sub {
  color: #10B981;
  font-size: 0.8rem;
  font-weight: 600;
}
.popup-feature-pink .popup-feat-sub { color: #DC2626; }

.popup-warning {
  color: #DC2626;
  font-size: 0.8rem;
  font-weight: 700;
  margin: 0.75rem 0 1rem;
}

.popup-btn-sim {
  width: 100%;
  background: linear-gradient(135deg, #22C55E, #16A34A);
  color: #fff;
  font-weight: 900;
  font-size: 1rem;
  padding: 1.1rem 1rem;
  border-radius: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  box-shadow: 0 4px 0 #14532d;
  transition: box-shadow .15s, transform .15s;
  margin-bottom: 0.875rem;
  cursor: pointer;
}
.popup-btn-sim:hover {
  box-shadow: 0 2px 0 #14532d;
  transform: translateY(2px);
}

.popup-btn-nao {
  background: transparent;
  color: #9CA3AF;
  font-size: 0.8rem;
  font-weight: 600;
  text-decoration: underline;
  cursor: pointer;
  padding: 0.25rem;
}
.popup-btn-nao:hover { color: #6B7280; }

/* ===== RESPONSIVE ===== */
@media (min-width: 640px) {
  #countdown-bar .label { font-size: 1rem; }
  .timer-box { font-size: 1.875rem; }
  .timer-colon { font-size: 1.875rem; }
  .mobile-br { display: none; }
}
