@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Barlow:ital,wght@0,400;0,600;0,700;0,900;1,400&display=swap');

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

:root {
  --ice: #00d4ff;
  --ice-dark: #0099bb;
  --navy: #0a0e1a;
  --navy2: #0f1628;
  --navy3: #141c35;
  --card: #111827;
  --gold: #f5c842;
  --white: #f0f6ff;
  --gray: #8898b0;
  --red: #ff3c3c;
  --green: #00e676;
  --radius: 12px;
  --shadow: 0 4px 32px rgba(0,212,255,0.12);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Barlow', sans-serif;
  background: var(--navy);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ─── NAV ─── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 2rem;
  background: rgba(10,14,26,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,212,255,0.08);
}
.nav-brand { font-family: 'Bebas Neue', sans-serif; font-size: 1.4rem; color: var(--ice); letter-spacing: 2px; text-decoration: none; }
.nav-cta {
  background: var(--ice); color: var(--navy);
  font-weight: 700; font-size: .85rem; letter-spacing: 1px;
  padding: .55rem 1.4rem; border-radius: 50px;
  text-decoration: none; transition: background .2s, transform .15s;
  text-transform: uppercase;
}
.nav-cta:hover { background: var(--ice-dark); transform: translateY(-1px); }

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center;
  padding: 7rem 1.5rem 4rem;
  position: relative;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(0,212,255,0.12) 0%, transparent 70%),
              linear-gradient(180deg, var(--navy) 0%, var(--navy2) 100%);
  overflow: hidden;
}
.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' fill-rule='evenodd'%3E%3Cg fill='%2300d4ff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.badge {
  display: inline-block;
  background: rgba(0,212,255,0.1); border: 1px solid rgba(0,212,255,0.3);
  color: var(--ice); font-size: .75rem; font-weight: 700; letter-spacing: 2px;
  padding: .4rem 1.2rem; border-radius: 50px; margin-bottom: 1.5rem;
  text-transform: uppercase;
}
.hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  line-height: 1.05;
  letter-spacing: 1px;
  max-width: 860px;
  margin: 0 auto 1.2rem;
}
.hero h1 span { color: var(--ice); }
.hero p { font-size: 1.15rem; color: var(--gray); max-width: 560px; margin: 0 auto 2.2rem; }
.btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, var(--ice) 0%, var(--ice-dark) 100%);
  color: var(--navy); font-weight: 900; font-size: 1rem;
  letter-spacing: 1px; text-transform: uppercase;
  padding: 1rem 2.5rem; border-radius: 50px;
  text-decoration: none; transition: transform .18s, box-shadow .18s;
  box-shadow: 0 6px 32px rgba(0,212,255,0.35);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(0,212,255,0.5); }
.guarantee-note { margin-top: 1rem; font-size: .82rem; color: var(--gray); }
.guarantee-note span { color: var(--green); }

.stats {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 1.5rem 3rem;
  margin-top: 3.5rem; padding-top: 2.5rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  width: 100%;
}
.stat-item { text-align: center; }
.stat-num { font-family: 'Bebas Neue', sans-serif; font-size: 2.2rem; color: var(--ice); display: block; }
.stat-label { font-size: .78rem; color: var(--gray); letter-spacing: 1px; text-transform: uppercase; }

/* ─── SECTIONS ─── */
section { padding: 5rem 1.5rem; }
.container { max-width: 900px; margin: 0 auto; }
.section-tag {
  display: inline-block; font-size: .72rem; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--ice);
  background: rgba(0,212,255,0.08); border: 1px solid rgba(0,212,255,0.2);
  padding: .3rem 1rem; border-radius: 50px; margin-bottom: 1rem;
}
.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  letter-spacing: 1px; line-height: 1.1;
  margin-bottom: 1.2rem;
}
.section-title span { color: var(--ice); }

/* ─── PAIN SECTION ─── */
.pain-section { background: var(--navy2); }
.pain-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1rem; margin-top: 2rem;
}
@media (max-width: 600px) { .pain-grid { grid-template-columns: 1fr; } }
.pain-item {
  display: flex; align-items: flex-start; gap: .8rem;
  background: var(--card); border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--radius); padding: 1.1rem;
}
.pain-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: .1rem; }
.pain-item p { font-size: .92rem; color: var(--gray); }

/* ─── ABOUT ─── */
.about-wrap {
  display: grid; grid-template-columns: 220px 1fr;
  gap: 3rem; align-items: center; margin-top: 2rem;
}
@media (max-width: 650px) { .about-wrap { grid-template-columns: 1fr; } }
.about-img-wrap { text-align: center; }
.about-img-wrap img {
  width: 200px; height: 200px; object-fit: cover;
  border-radius: 50%; border: 3px solid var(--ice);
  box-shadow: 0 0 40px rgba(0,212,255,0.2);
}
.about-name { font-weight: 700; margin-top: .8rem; font-size: 1rem; }
.about-role { font-size: .8rem; color: var(--gray); }
blockquote {
  border-left: 3px solid var(--ice); padding-left: 1.2rem;
  color: var(--gray); font-style: italic; margin-top: 1.2rem; font-size: .95rem;
}
blockquote cite { display: block; margin-top: .5rem; font-style: normal; font-weight: 600; color: var(--white); }

/* ─── MARKET ─── */
.market-section { background: var(--navy3); }
.market-cards {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.2rem; margin-top: 2.5rem;
}
.market-card {
  background: var(--card); border: 1px solid rgba(0,212,255,0.12);
  border-radius: var(--radius); padding: 1.8rem 1.5rem; text-align: center;
}
.market-card .big { font-family: 'Bebas Neue', sans-serif; font-size: 2.4rem; color: var(--ice); display: block; }
.market-card p { font-size: .85rem; color: var(--gray); margin-top: .4rem; }

/* ─── CURRICULUM ─── */
.curriculum-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem; margin-top: 2.5rem;
}
.curriculum-card {
  background: var(--card); border: 1px solid rgba(255,255,255,0.06);
  border-left: 3px solid var(--ice);
  border-radius: var(--radius); padding: 1.4rem;
  transition: border-color .2s, transform .2s;
}
.curriculum-card:hover { border-left-color: var(--gold); transform: translateX(4px); }
.curriculum-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: .4rem; }
.curriculum-card p { font-size: .85rem; color: var(--gray); }
.curriculum-hours { text-align: center; margin-bottom: 1.5rem; }
.curriculum-hours span { color: var(--ice); font-weight: 700; }

/* ─── BONUSES ─── */
.bonuses-section { background: var(--navy2); }
.bonuses-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.2rem; margin-top: 2.5rem;
}
.bonus-card {
  background: var(--card); border: 1px solid rgba(0,212,255,0.15);
  border-radius: var(--radius); padding: 1.6rem;
  position: relative; overflow: hidden;
}
.bonus-card::before {
  content: 'GRÁTIS';
  position: absolute; top: 1rem; right: -1.8rem;
  background: var(--ice); color: var(--navy);
  font-size: .65rem; font-weight: 900; letter-spacing: 1px;
  padding: .3rem 2.5rem; transform: rotate(45deg);
}
.bonus-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: .5rem; }
.bonus-card p { font-size: .85rem; color: var(--gray); }
.bonus-price { margin-top: 1rem; font-size: .8rem; color: var(--gray); }
.bonus-price del { color: var(--red); margin-right: .4rem; }
.bonus-price strong { color: var(--green); }

/* ─── FOR WHO ─── */
.forwhom-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-top: 2.5rem; }
@media (max-width: 600px) { .forwhom-grid { grid-template-columns: 1fr; } }
.forwhom-box { background: var(--card); border-radius: var(--radius); padding: 1.8rem; }
.forwhom-box h3 { font-size: 1.1rem; font-weight: 900; margin-bottom: 1.2rem; display: flex; align-items: center; gap: .5rem; }
.forwhom-box.yes h3 { color: var(--green); }
.forwhom-box.no h3 { color: var(--red); }
.forwhom-box ul { list-style: none; display: flex; flex-direction: column; gap: .7rem; }
.forwhom-box li { font-size: .9rem; color: var(--gray); padding-left: 1.5rem; position: relative; }
.forwhom-box.yes li::before { content: '✓'; position: absolute; left: 0; color: var(--green); font-weight: 700; }
.forwhom-box.no li::before { content: '✗'; position: absolute; left: 0; color: var(--red); font-weight: 700; }

/* ─── FAQ ─── */
.faq-section { background: var(--navy3); }
.faq-list { margin-top: 2rem; display: flex; flex-direction: column; gap: .8rem; }
.faq-item {
  background: var(--card); border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius); overflow: hidden;
}
.faq-question {
  width: 100%; background: none; border: none; color: var(--white);
  font-family: 'Barlow', sans-serif; font-size: .97rem; font-weight: 600;
  text-align: left; padding: 1.2rem 1.4rem;
  display: flex; justify-content: space-between; align-items: center;
  cursor: pointer; transition: color .2s;
}
.faq-question:hover { color: var(--ice); }
.faq-chevron { font-size: 1.1rem; transition: transform .3s; flex-shrink: 0; }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height .35s ease, padding .3s;
  font-size: .9rem; color: var(--gray); padding: 0 1.4rem;
}
.faq-item.open .faq-answer { max-height: 200px; padding: 0 1.4rem 1.2rem; }
.faq-item.open .faq-chevron { transform: rotate(180deg); color: var(--ice); }

/* ─── GUARANTEE ─── */
.guarantee-section { text-align: center; }
.guarantee-badge {
  display: inline-flex; flex-direction: column; align-items: center; justify-content: center;
  width: 140px; height: 140px; border-radius: 50%;
  border: 4px solid var(--green);
  background: rgba(0,230,118,0.07);
  margin: 0 auto 2rem;
}
.guarantee-badge span:first-child { font-family: 'Bebas Neue', sans-serif; font-size: 2rem; color: var(--green); line-height: 1; }
.guarantee-badge span:last-child { font-size: .75rem; color: var(--green); letter-spacing: 1px; text-transform: uppercase; }
.guarantee-section p { max-width: 540px; margin: 1rem auto 0; color: var(--gray); }

/* ─── OFFER / CTA ─── */
.offer-section {
  background: radial-gradient(ellipse 80% 80% at 50% 50%, rgba(0,212,255,0.08) 0%, transparent 70%),
              var(--navy2);
  text-align: center; padding: 5rem 1.5rem;
}
.offer-section .section-title { margin-bottom: .5rem; }
.offer-label { font-size: .85rem; color: var(--gray); margin-bottom: .5rem; }
.offer-old { font-size: 1rem; color: var(--gray); text-decoration: line-through; margin-bottom: .3rem; }
.offer-price-wrap { margin: 1.2rem 0; }
.offer-installments { font-family: 'Bebas Neue', sans-serif; font-size: clamp(2.5rem, 8vw, 4rem); color: var(--ice); line-height: 1; }
.offer-installments small { font-size: 1.2rem; }
.offer-pix { margin-top: .5rem; font-size: .95rem; color: var(--gray); }
.offer-pix strong { color: var(--white); }
.offer-cta {
  display: inline-block; margin-top: 1.5rem;
  background: linear-gradient(135deg, #00e676 0%, #00b85c 100%);
  color: #003322; font-weight: 900; font-size: 1.1rem;
  letter-spacing: 1px; text-transform: uppercase;
  padding: 1.2rem 3rem; border-radius: 50px;
  text-decoration: none; transition: transform .18s, box-shadow .18s;
  box-shadow: 0 6px 32px rgba(0,230,118,0.35);
}
.offer-cta:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(0,230,118,0.5); }
.payment-icons { margin-top: 1.2rem; display: flex; justify-content: center; align-items: center; flex-wrap: wrap; gap: .5rem; }
.payment-icons span {
  background: var(--card); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 6px; padding: .3rem .8rem; font-size: .75rem; color: var(--gray);
  font-weight: 700;
}
.offer-notes { margin-top: 1.5rem; display: flex; justify-content: center; flex-wrap: wrap; gap: 1rem; }
.offer-note { font-size: .8rem; color: var(--gray); display: flex; align-items: center; gap: .4rem; }
.offer-note::before { content: '✓'; color: var(--green); font-weight: 700; }

/* ─── FOOTER ─── */
footer {
  background: var(--navy); border-top: 1px solid rgba(255,255,255,0.05);
  padding: 2.5rem 1.5rem; text-align: center;
}
.footer-brand { font-family: 'Bebas Neue', sans-serif; font-size: 1.3rem; color: var(--ice); letter-spacing: 2px; margin-bottom: .8rem; }
.footer-links { display: flex; justify-content: center; gap: 1.5rem; margin-bottom: 1rem; }
.footer-links a { font-size: .82rem; color: var(--gray); text-decoration: none; transition: color .2s; }
.footer-links a:hover { color: var(--ice); }
.footer-copy { font-size: .78rem; color: var(--gray); }

/* ─── FLOATING WA ─── */
.wa-float {
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 200;
  background: #25d366; color: #fff;
  width: 54px; height: 54px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; box-shadow: 0 4px 20px rgba(37,211,102,0.5);
  text-decoration: none; transition: transform .2s;
}
.wa-float:hover { transform: scale(1.12); }

/* ─── RESPONSIVE ─── */
@media (max-width: 700px) {
  .about-wrap { text-align: center; }
  .stats { gap: 1rem 2rem; }
}
