:root{
  /* Dark theme */
  --bg0:#0b1020;
  --bg1:#0f172a;
  --bg2:#111c3a;
  --txt:#e5e7eb;
  --muted:#94a3b8;

  /* Accents */
  --brand:#1f6bff;   /* blue */
  --brand2:#4da3ff;  /* light blue */
  --accent:#ff7a18;  /* orange */

  --border:rgba(255,255,255,.12);
  --border2:rgba(255,255,255,.18);
  --shadow: 0 18px 55px rgba(0,0,0,.55);
}

html,body{
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--txt);
  background: var(--bg0);
  min-height: 100%;
}

body{
  background:
    radial-gradient(900px 500px at 15% 5%, rgba(31,107,255,.18), transparent 55%),
    radial-gradient(900px 500px at 85% 0%, rgba(255,122,24,.14), transparent 55%),
    radial-gradient(700px 420px at 50% 100%, rgba(77,163,255,.10), transparent 60%),
    linear-gradient(180deg, var(--bg0), var(--bg1));
}

/* Links */
a{ color: inherit; }
a:hover{ color: inherit; }

/* Navbar */
.nav-blur{
  background: rgba(11,16,32,.72);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.navbar .navbar-brand{ color: #fff !important; letter-spacing:-.01em; }
.navbar .nav-link{
  color: rgba(229,231,235,.78) !important;
  font-weight: 600;
}
.navbar .nav-link:hover{ color: rgba(229,231,235,.95) !important; }

/* Layout */
.hero{
  padding: 92px 0 48px;
  position: relative;
}

.section{
  padding: 56px 0;
  border-top: 1px solid rgba(255,255,255,.06);
}
.section-title{ font-weight: 900; letter-spacing: -0.02em; }
.muted{ color: var(--muted); }

/* Components */
.hero-media{
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: rgba(255,255,255,.03);
}
.hero-media img{
  width: 100%;
  height: auto;
  display:block;
}

.cardx{
  background:
    radial-gradient(800px 500px at 15% 0%, rgba(31,107,255,.12), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.025));
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.pill{
  display:inline-block;
  padding:.35rem .65rem;
  border-radius:999px;
  border:1px solid var(--border);
  color: rgba(229,231,235,.82);
  font-size:.9rem;
  background: rgba(255,255,255,.03);
}

.badge-soft{
  display:inline-flex;
  align-items:center;
  gap:.5rem;
  padding:.45rem .75rem;
  border-radius:999px;
  background: rgba(31,107,255,.14);
  border: 1px solid rgba(31,107,255,.28);
  font-weight: 700;
  font-size: .9rem;
}

.icon-dot{
  width:10px;height:10px;border-radius:999px;
  background: var(--brand2);
  box-shadow: 0 0 0 4px rgba(31,107,255,.18);
  display:inline-block;
  transform: translateY(-1px);
}

.kpi{
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 14px;
  background: rgba(255,255,255,.03);
  height: 100%;
}
.kpi .num{ font-size: 1.4rem; font-weight: 900; }

.hr-soft{ border-color: rgba(255,255,255,.10); opacity: 1; }

.pricebox{
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 18px;
  background:
    radial-gradient(540px 300px at 20% 0%, rgba(31,107,255,.20), transparent 58%),
    radial-gradient(540px 300px at 85% 20%, rgba(255,122,24,.14), transparent 60%),
    rgba(255,255,255,.03);
}

.countdown{
  font-variant-numeric: tabular-nums;
  font-weight: 900;
  letter-spacing: .02em;
  color:#fff;
}

.tag-warning{
  display:inline-block;
  padding:.25rem .55rem;
  border-radius:999px;
  background: rgba(255,122,24,.14);
  border:1px solid rgba(255,122,24,.30);
  color: #ffd8bf;
  font-weight:800;
  font-size:.85rem;
}

/* Buttons */
.btn{
  border-radius: 14px !important;
}

.btn-brand{
  background: linear-gradient(90deg, var(--brand), var(--brand2));
  border: none;
  color:#fff;
  font-weight: 900;
  padding: .95rem 1.1rem;
  box-shadow: 0 14px 34px rgba(31,107,255,.22);
}
.btn-brand:hover{ filter: brightness(1.06); }

.btn-accent{
  background: linear-gradient(90deg, var(--accent), #ffb020);
  border: none;
  color:#0b1020;
  font-weight: 900;
  padding: .95rem 1.1rem;
  box-shadow: 0 14px 34px rgba(255,122,24,.22);
}
.btn-accent:hover{ filter: brightness(1.06); }

.btn-outline-soft{
  border: 1px solid var(--border2);
  color: rgba(229,231,235,.92);
  font-weight: 800;
  padding: .95rem 1.1rem;
  background: rgba(255,255,255,.03);
}
.btn-outline-soft:hover{ background: rgba(255,255,255,.06); }

/* Avatar / gallery */
.avatar{
  width: 76px; height: 76px;
  border-radius: 18px;
  overflow:hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.avatar img{ width:100%; height:100%; object-fit:cover; }

.gallery-card img{
  width:100%;
  border-radius: 16px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

/* Accordion (Bootstrap) */
.accordion-item{ background: transparent; }
.accordion-button{
  background: rgba(255,255,255,.03);
  color: rgba(229,231,235,.92);
  font-weight: 800;
  border: 0;
}
.accordion-button:not(.collapsed){
  background: rgba(31,107,255,.12);
  color: #fff;
  box-shadow: none;
}
.accordion-button:focus{
  box-shadow: 0 0 0 .25rem rgba(31,107,255,.18);
}
.accordion-body{
  background: rgba(255,255,255,.02);
}

/* Sticky CTA */
.sticky-cta{
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: rgba(11,16,32,.78);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--border);
  padding: 10px 0;
  z-index: 1040;
  display: none;
}

.tiny{ font-size: .9rem; color: var(--muted); }

.footer{
  padding: 36px 0 84px;
  border-top: 1px solid rgba(255,255,255,.10);
  color: var(--muted);
}

/* Small screens */
@media (max-width: 576px){
  .hero{ padding-top: 78px; }
  .btn-brand, .btn-outline-soft, .btn-accent{ width: 100%; }
}


/* ===== Section Background Alternation (blue / light blue / white) ===== */
.hero-bg-blue{
  background:
    radial-gradient(900px 500px at 15% 15%, rgba(31,107,255,.28), transparent 60%),
    radial-gradient(900px 500px at 85% 0%, rgba(77,163,255,.18), transparent 60%),
    radial-gradient(700px 420px at 50% 105%, rgba(255,122,24,.16), transparent 65%);
}

.section-bg-blue{
  background:
    radial-gradient(900px 500px at 20% 0%, rgba(255,255,255,.10), transparent 60%),
    linear-gradient(180deg, rgba(31,107,255,.22), rgba(15,23,42,.0));
}

.section-bg-lightblue{
  background: linear-gradient(180deg, #eef6ff, #e7f2ff);
  color: #0b1020;
}

.section-bg-white{
  background: #ffffff;
  color: #0b1020;
}

.section-bg-lightblue .muted,
.section-bg-white .muted{
  color: rgba(11,16,32,.68);
}

.section-bg-lightblue a,
.section-bg-white a{ color: inherit; }

.section-bg-lightblue .pill,
.section-bg-white .pill{
  border-color: rgba(11,16,32,.12);
  background: rgba(11,16,32,.03);
  color: rgba(11,16,32,.78);
}

.section-bg-lightblue .cardx,
.section-bg-white .cardx{
  background: #ffffff;
  border: 1px solid rgba(11,16,32,.10);
  box-shadow: 0 18px 55px rgba(11,16,32,.12);
}

.section-bg-lightblue .hr-soft,
.section-bg-white .hr-soft{
  border-top-color: rgba(11,16,32,.10) !important;
}

.section-bg-lightblue .kpi,
.section-bg-white .kpi{
  border-color: rgba(11,16,32,.10);
}

/* Guarantee block */
.guarantee-block{
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 14px 14px;
  background: rgba(255,255,255,.03);
}
.section-bg-lightblue .guarantee-block,
.section-bg-white .guarantee-block{
  background: #f8fbff;
  border-color: rgba(11,16,32,.10);
}


/* Oferta (alta conversão) */
.offer-box{
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  border-radius: 16px;
  padding: 14px 14px;
}

.price-from{
  text-decoration: line-through;
  opacity: .7;
  font-size: .95rem;
}

.price-now{
  font-size: 1.45rem;
  font-weight: 800;
}

.price-installments{
  margin-top: 6px;
  font-size: .95rem;
  opacity: .9;
}

.badge-guarantee{
  display:inline-block;
  padding: 6px 10px;
  border-radius: 999px;
  font-weight: 700;
  font-size: .85rem;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
}

.offer-checklist{
  list-style: none;
  padding-left: 0;
  display: grid;
  gap: 8px;
  font-size: .95rem;
}

.offer-checklist li{
  background: rgba(0,0,0,.12);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 12px;
  padding: 10px 12px;
}


/* ===== HERO hierarchy / premium offer ===== */
.hero .badge-soft{ max-width: 520px; }
.hero .hero-title{ max-width: 920px; margin-left:auto; margin-right:auto; }
.hero .hero-lead{ max-width: 760px; margin-left:auto; margin-right:auto; }

.hero .btn-accent{ padding: 12px 18px; font-weight: 800; }
.hero .btn-outline-soft{ padding: 12px 18px; }

@media (min-width: 992px){
  .hero{ padding-top: 140px; padding-bottom: 96px; }
}

/* Make offer feel like 497 -> 197 */
.offer-box{
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.14);
}

.price-now{
  font-size: 1.85rem;
  letter-spacing: -0.02em;
}

.price-from{
  font-size: 1rem;
}

.price-installments{
  font-size: 1.02rem;
}

.offer-checklist li{
  background: rgba(0,0,0,.16);
}

/* Center the offer card inside hero */
.hero .cardx{ text-align: left; }
.hero .cardx .btn{ font-weight: 800; }


/* ===== Março / Mês do Consumidor ===== */
.hero-offer-ribbon{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:.5rem;
  width:100%;
  max-width:920px;
  margin:0 auto 14px;
  padding:12px 18px;
  border-radius:16px;
  font-weight:900;
  letter-spacing:.02em;
  text-align:center;
  color:#0b1020;
  background:linear-gradient(90deg, #ff7a18, #ffb020);
  box-shadow:0 18px 45px rgba(255,122,24,.25);
}

.consumer-highlight{
  display:inline-block;
  padding:10px 14px;
  border-radius:999px;
  font-weight:700;
  background:rgba(31,107,255,.10);
  color:#0b1020;
  border:1px solid rgba(31,107,255,.12);
}

.price-saving{
  margin-top:8px;
  display:inline-block;
  padding:8px 12px;
  border-radius:999px;
  background:rgba(255,122,24,.12);
  border:1px solid rgba(255,122,24,.26);
  color:#ffd8bf;
  font-size:.92rem;
  font-weight:700;
}

.final-cta-section{
  background:
    radial-gradient(900px 500px at 15% 15%, rgba(31,107,255,.20), transparent 60%),
    radial-gradient(900px 500px at 85% 0%, rgba(255,122,24,.18), transparent 60%),
    linear-gradient(180deg, var(--bg1), var(--bg0));
}

.final-cta-card{
  border:1px solid var(--border);
  border-radius:24px;
  padding:28px;
  background:linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.03));
  box-shadow:var(--shadow);
}

.final-cta-badge{
  display:inline-block;
  margin-bottom:14px;
  padding:8px 14px;
  border-radius:999px;
  background:rgba(255,122,24,.14);
  border:1px solid rgba(255,122,24,.30);
  color:#ffd8bf;
  font-size:.85rem;
  font-weight:900;
}

.final-cta-button{
  min-height:56px;
  letter-spacing:.02em;
}

@media (max-width: 576px){
  .hero-offer-ribbon{ font-size:.88rem; line-height:1.3; }
  .final-cta-card{ padding:20px; }
}


/* ===== Clean March Campaign Refresh ===== */
.hero-clean{ padding-top: 120px; padding-bottom: 70px; }
.hero-grid{ align-items: center; }
.hero-title-left,
.hero-lead-left{ margin-left: 0; margin-right: 0; max-width: 100%; }
.promo-bar{
  display: inline-block;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  color: #fff;
  font-size: .86rem;
  font-weight: 800;
  letter-spacing: .04em;
}
.hero-proof{
  display:grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  gap: 10px;
  max-width: 620px;
}
.hero-proof-item{
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 12px 14px;
  background: rgba(255,255,255,.04);
  font-weight: 700;
}
.hero-mini-copy{
  font-size: 1.05rem;
  color: #fff;
}
.hero-note{
  color: var(--muted);
  font-size: .95rem;
}
.price-card-clean{
  padding: 24px;
  border-radius: 20px;
  background:
    radial-gradient(500px 260px at 15% 0%, rgba(31,107,255,.18), transparent 60%),
    radial-gradient(400px 220px at 100% 0%, rgba(255,122,24,.14), transparent 55%),
    rgba(255,255,255,.05);
}
.offer-topline{
  display:inline-block;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255,122,24,.14);
  border:1px solid rgba(255,122,24,.30);
  color:#ffd8bf;
  font-size:.8rem;
  font-weight:800;
  letter-spacing:.03em;
}
.offer-card-title{
  font-size: 1.55rem;
  font-weight: 800;
  margin: 14px 0 6px;
}
.price-stack .price-from{
  text-decoration: line-through;
  opacity: .75;
  font-size: 1rem;
  margin-bottom: 6px;
}
.price-stack .price-now{
  font-size: 3rem;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -.03em;
  color: #fff;
}
.price-stack .price-installments{
  margin-top: 8px;
  font-size: 1rem;
  color: rgba(229,231,235,.92);
}
.economy-line{
  margin-top: 12px;
  font-size: .98rem;
  color: #ffd8bf;
}
.countdown-box{
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 16px;
  padding: 14px;
  background: rgba(0,0,0,.12);
}
.final-cta-section{ padding-top: 26px; }
.final-cta-card{ border-radius: 22px; }
.final-price{
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: -.03em;
}
@media (max-width: 991px){
  .hero-clean{ padding-top: 96px; }
  .hero-proof{ grid-template-columns: 1fr; }
}
@media (max-width: 576px){
  .promo-bar{ font-size: .76rem; }
  .price-stack .price-now{ font-size: 2.4rem; }
}
