/* =========================================================
   Atividade TEA — Sales Page
   Pure HTML + CSS (Elementor / Hostinger compatible)
   ========================================================= */

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

:root {
  --bg: #0a0f1e;
  --bg-2: #0f1629;
  --bg-3: #131c33;
  --card: #182241;
  --card-2: #1c2649;
  --border: rgba(255,255,255,.08);
  --text: #ffffff;
  --text-2: #b8c1d9;
  --text-3: #8891ad;
  --primary: #6366f1;
  --primary-2: #8b5cf6;
  --primary-3: #ec4899;
  --blue: #3b82f6;
  --green: #10b981;
  --yellow: #fbbf24;
  --grad-primary: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #ec4899 100%);
  --grad-rainbow: linear-gradient(90deg, #ec4899, #f59e0b, #10b981, #3b82f6, #8b5cf6);
  --grad-blue: linear-gradient(90deg, #3b82f6, #8b5cf6);
  --radius: 16px;
  --radius-lg: 24px;
  --shadow: 0 20px 60px -20px rgba(99,102,241,.35);
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 780px; }
.center { text-align: center; }
.mt-40 { margin-top: 40px; }

/* HEADER */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(10,15,30,.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 24px;
}
.logo { display: flex; align-items: center; gap: 10px; font-weight: 700; }
.logo-badge {
  width: 38px; height: 38px; border-radius: 10px;
  background: var(--grad-primary);
  display: grid; place-items: center;
  font-size: 14px; font-weight: 800;
  box-shadow: var(--shadow);
}
.logo-text .dot { color: var(--primary-2); }

/* BUTTONS */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 26px; border-radius: 999px;
  font-weight: 600; font-size: 15px;
  transition: all .25s ease; cursor: pointer; border: none;
}
.btn-primary {
  background: var(--grad-primary);
  color: #fff;
  box-shadow: 0 10px 30px -8px rgba(139,92,246,.55);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 15px 40px -8px rgba(139,92,246,.7); }
.btn-ghost { color: var(--text-2); background: rgba(255,255,255,.05); border: 1px solid var(--border); }
.btn-ghost:hover { background: rgba(255,255,255,.1); }
.btn-cta-sm {
  background: var(--grad-primary); color: #fff;
  padding: 10px 20px; font-size: 14px;
  box-shadow: 0 6px 20px -6px rgba(139,92,246,.5);
}
.btn-block { display: flex; width: 100%; margin-top: 8px; }
.btn-lg { padding: 18px 28px; font-size: 17px; }

/* HERO */
.hero {
  position: relative;
  padding: 80px 0 60px;
  background:
    radial-gradient(1200px 500px at 50% 0%, rgba(99,102,241,.18), transparent 60%),
    radial-gradient(800px 400px at 80% 40%, rgba(236,72,153,.10), transparent 60%),
    var(--bg);
  text-align: center;
}
.pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 18px; border-radius: 999px;
  background: rgba(99,102,241,.12);
  border: 1px solid rgba(99,102,241,.3);
  color: #c7d2fe; font-size: 14px; font-weight: 500;
  margin-bottom: 28px;
}
.hero-title {
  font-size: clamp(2rem, 5vw, 3.6rem);
  font-weight: 800; line-height: 1.1;
  letter-spacing: -.02em;
  max-width: 900px; margin: 0 auto 40px;
}
.grad-blue {
  background: var(--grad-blue);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.grad-rainbow {
  background: var(--grad-rainbow);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-image {
  max-width: 520px; margin: 0 auto 32px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 40px 80px -20px rgba(99,102,241,.35);
}
.hero-image img { border-radius: var(--radius-lg); }
.hero-sub {
  max-width: 620px; margin: 0 auto 32px;
  color: var(--text-2); font-size: 17px;
}
.hero-cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 32px; }
.hero-trust {
  display: flex; gap: 24px; justify-content: center; flex-wrap: wrap;
  color: var(--text-3); font-size: 14px;
}
.hero-trust b { color: var(--text); }

/* SECTIONS */
.section { padding: 90px 0; position: relative; }
.section-dark { background: var(--bg-2); }
.eyebrow {
  text-align: center; text-transform: uppercase;
  color: var(--primary-2); font-weight: 600;
  font-size: 13px; letter-spacing: .15em; margin-bottom: 14px;
}
.section-title {
  text-align: center;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800; letter-spacing: -.02em;
  max-width: 800px; margin: 0 auto 18px;
  line-height: 1.2;
}
.section-title em {
  font-style: normal;
  background: var(--grad-primary);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.section-lead {
  text-align: center; color: var(--text-2);
  max-width: 640px; margin: 0 auto 56px;
  font-size: 17px;
}

/* GRIDS */
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* CARDS INCLUSO */
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .3s ease, border-color .3s;
}
.card:hover { transform: translateY(-4px); border-color: rgba(139,92,246,.4); }
.card img { aspect-ratio: 4/3; object-fit: cover; width: 100%; }
.card-body {
  padding: 18px 20px;
  font-size: 15px; color: var(--text-2);
  display: flex; align-items: flex-start; gap: 10px;
  min-height: 90px;
}
.card-body .ico { font-size: 22px; flex-shrink: 0; }

/* DRIVE BOX */
.drive-box {
  margin-top: 56px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: flex; align-items: center; gap: 32px;
}
.drive-box img { width: 120px; flex-shrink: 0; }
.drive-box h3 { font-size: 1.5rem; margin-bottom: 8px; }
.drive-box p { color: var(--text-2); }

/* FEATURES */
.features .feature {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: transform .3s;
}
.features .feature:hover { transform: translateY(-4px); }
.ficon {
  font-size: 36px;
  width: 64px; height: 64px;
  border-radius: 16px;
  background: rgba(99,102,241,.15);
  display: grid; place-items: center;
  margin-bottom: 18px;
}
.feature h3 { font-size: 1.15rem; margin-bottom: 8px; }
.feature p { color: var(--text-2); font-size: 15px; }

/* PERSONAS */
.persona {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: transform .3s;
}
.persona:hover { transform: translateY(-4px); border-color: rgba(139,92,246,.4); }
.picon {
  font-size: 44px; margin-bottom: 16px;
  width: 80px; height: 80px; border-radius: 20px;
  background: var(--grad-primary);
  display: grid; place-items: center; margin: 0 auto 18px;
  box-shadow: 0 10px 30px -10px rgba(139,92,246,.6);
}
.persona h3 { font-size: 1.2rem; margin-bottom: 8px; }
.persona p { color: var(--text-2); font-size: 14px; }

/* TESTIMONIALS */
.testimonials .testimonial {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  display: flex; gap: 18px;
}
.testimonial img {
  width: 64px; height: 64px; border-radius: 50%;
  object-fit: cover; flex-shrink: 0;
  border: 2px solid rgba(139,92,246,.4);
}
.testimonial h4 { font-size: 1rem; margin-bottom: 2px; }
.testimonial h4 span { color: var(--text-3); font-weight: 400; font-size: 13px; }
.testimonial .stars { color: var(--yellow); font-size: 14px; margin-bottom: 8px; }
.testimonial p { color: var(--text-2); font-size: 14px; }

/* STATS */
.stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 20px; margin-top: 56px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.stats > div { text-align: center; }
.stats b {
  display: block; font-size: 2rem; font-weight: 800;
  background: var(--grad-primary);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.stats span { color: var(--text-3); font-size: 14px; }

/* BONUS */
.bonus .bonus-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 22px;
  position: relative;
  transition: transform .3s;
}
.bonus .bonus-card:hover { transform: translateY(-4px); }
.bonus .bonus-card.highlight {
  background: linear-gradient(160deg, rgba(139,92,246,.15), rgba(236,72,153,.08));
  border-color: rgba(139,92,246,.5);
}
.bonus .tag {
  position: absolute; top: -12px; left: 20px;
  background: var(--grad-primary);
  padding: 5px 12px; border-radius: 999px;
  font-size: 11px; font-weight: 700; letter-spacing: .05em;
}
.bicon { font-size: 40px; margin-bottom: 14px; }
.bonus-card h3 { font-size: 1.1rem; margin-bottom: 8px; }
.bonus-card p { color: var(--text-2); font-size: 14px; margin-bottom: 16px; }
.price-old { color: var(--text-3); text-decoration: line-through; font-size: 13px; }
.price-free {
  display: inline-block; margin-top: 6px;
  background: rgba(16,185,129,.15);
  color: #34d399;
  padding: 4px 12px; border-radius: 999px;
  font-weight: 700; font-size: 13px;
  border: 1px solid rgba(16,185,129,.35);
}

/* OFFER */
.section-offer {
  background:
    radial-gradient(800px 400px at 50% 0%, rgba(139,92,246,.15), transparent 60%),
    var(--bg-2);
}
.plans .plan {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 34px;
  position: relative;
}
.plans .plan-featured {
  background: linear-gradient(170deg, rgba(139,92,246,.18), rgba(236,72,153,.10) 100%);
  border-color: rgba(139,92,246,.6);
  box-shadow: 0 30px 80px -20px rgba(139,92,246,.4);
  transform: scale(1.02);
}
.ribbon {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(90deg, #f59e0b, #ec4899);
  padding: 6px 18px; border-radius: 999px;
  font-size: 12px; font-weight: 700; letter-spacing: .08em;
  box-shadow: 0 8px 20px -8px rgba(236,72,153,.6);
}
.plan-badge {
  background: rgba(16,185,129,.12);
  border: 1px solid rgba(16,185,129,.3);
  color: #34d399;
  padding: 8px 14px; border-radius: 10px;
  font-size: 13px; margin-bottom: 20px;
  text-align: center;
}
.plan h3 { font-size: 1.8rem; margin-bottom: 6px; }
.plan-sub { color: var(--text-2); margin-bottom: 20px; }
.reviews { color: var(--yellow); font-size: 14px; margin-bottom: 16px; }
.price-block { margin: 24px 0; text-align: center; }
.price-block .price-old { font-size: 15px; margin-bottom: 6px; }
.price-now {
  font-size: 1.4rem; color: var(--text-2);
  margin: 4px 0;
}
.price-now b {
  font-size: 3.2rem; font-weight: 800; color: var(--text);
  background: var(--grad-primary);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.price-note { color: var(--text-3); font-size: 13px; }
.check { list-style: none; margin: 20px 0; }
.check li {
  padding: 10px 0 10px 30px; position: relative;
  color: var(--text-2); font-size: 15px;
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.check li:before {
  content: "✓";
  position: absolute; left: 0; top: 10px;
  width: 20px; height: 20px; border-radius: 50%;
  background: rgba(16,185,129,.2);
  color: #34d399; font-weight: 700; font-size: 12px;
  display: grid; place-items: center;
}
.bonus-list { margin: 20px 0; padding: 18px; background: rgba(0,0,0,.25); border-radius: 12px; }
.bonus-title { font-weight: 700; margin-bottom: 10px; color: #fbbf24; }
.bonus-list ul { list-style: none; }
.bonus-list li { padding: 6px 0; font-size: 14px; color: var(--text-2); }
.bonus-list b { color: #34d399; }
.bonus-list s { color: var(--text-3); }
.guarantee-mini {
  background: rgba(251,191,36,.1);
  border: 1px solid rgba(251,191,36,.3);
  color: #fcd34d;
  padding: 12px; border-radius: 10px;
  font-size: 13px; text-align: center; margin: 18px 0;
}
.secure { text-align: center; color: var(--text-3); font-size: 13px; margin-top: 14px; }
.payments { text-align: center; margin: 60px 0 40px; }
.payments img { max-width: 460px; margin: 0 auto; opacity: .9; }

/* GUARANTEE */
.guarantee {
  margin-top: 40px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  display: flex; align-items: center; gap: 28px;
  max-width: 780px; margin-left: auto; margin-right: auto;
}
.guarantee-seal {
  font-size: 64px;
  width: 100px; height: 100px; border-radius: 50%;
  background: rgba(16,185,129,.15);
  display: grid; place-items: center;
  flex-shrink: 0;
  border: 2px dashed rgba(16,185,129,.5);
}
.guarantee h3 { font-size: 1.3rem; margin-bottom: 6px; }
.guarantee p { color: var(--text-2); }

/* FAQ */
.faq {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
}
.faq summary {
  padding: 20px 24px;
  cursor: pointer;
  font-weight: 600;
  list-style: none;
  display: flex; justify-content: space-between; align-items: center;
  gap: 20px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:after {
  content: "+";
  font-size: 24px; color: var(--primary-2);
  transition: transform .3s;
}
.faq[open] summary:after { transform: rotate(45deg); }
.faq p {
  padding: 0 24px 22px;
  color: var(--text-2);
  font-size: 15px;
}

/* CTA FINAL */
.section-cta-final {
  background:
    radial-gradient(800px 400px at 50% 50%, rgba(236,72,153,.15), transparent 60%),
    var(--bg-2);
}
.ig-icon { font-size: 56px; margin-bottom: 12px; }

/* FOOTER */
.site-footer {
  padding: 50px 0;
  border-top: 1px solid var(--border);
  background: var(--bg);
  color: var(--text-3);
  font-size: 14px;
}
.seals { max-width: 380px; margin: 0 auto 24px; opacity: .8; }
.site-footer .small { font-size: 12px; margin-top: 6px; opacity: .7; }

/* RESPONSIVE */
@media (max-width: 960px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .drive-box { flex-direction: column; text-align: center; }
  .plans .plan-featured { transform: none; }
}
@media (max-width: 640px) {
  .section { padding: 60px 0; }
  .hero { padding: 50px 0 40px; }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); padding: 24px; }
  .testimonials .testimonial { flex-direction: column; text-align: center; align-items: center; }
  .guarantee { flex-direction: column; text-align: center; padding: 28px 22px; }
  .header-inner { padding: 12px 16px; }
  .btn-cta-sm { padding: 8px 14px; font-size: 12px; }
  .logo-text { display: none; }
  .plan { padding: 32px 22px; }
  .price-now b { font-size: 2.6rem; }
}
