:root{
  --bg: #070b12;
  --card: rgba(12, 16, 22, .74);
  --border: rgba(255,255,255,.10);
  --text: rgba(255,255,255,.92);
  --muted: rgba(255,255,255,.65);

  /* detalhes */
  --accent: #19e6b4;
  --accent2: #12c79c;

  /* bands */
  --blue: #0ea5ff;
  --blue2: #1473ff;

  /* CTA laranja (Finch-like) */
  --cta: #f59e0b;
  --cta2: #fb923c;

  --shadow: 0 22px 60px rgba(0,0,0,.55);
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
}

a{ color: inherit; }
img{ max-width: 100%; display:block; }

.container{
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.center{ display:flex; justify-content:center; }

/* ===== TOPBAR ===== */
.topbar{
  position: sticky;
  top:0;
  z-index: 50;
  background: rgba(8,10,16,.72);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.topbar__inner{
  display:flex;
  align-items:center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 14px;
}
.brand{
  font-weight: 950;
  letter-spacing: .10em;
  font-size: 14px;
}
.brand span{ color: var(--accent); }

.nav{ display:flex; gap: 18px; }
.nav a{
  color: rgba(255,255,255,.75);
  text-decoration:none;
  font-size: 14px;
}
.nav a:hover{ color: #fff; }

/* ===== BUTTONS ===== */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  border-radius: 14px;
  padding: 12px 16px;
  font-weight: 950;
  border: 1px solid transparent;
  transition: .2s ease;
  cursor:pointer;
  user-select: none;
}

.btn--primary{
  background: linear-gradient(180deg, var(--accent), var(--accent2));
  color: #061c14;
  box-shadow: 0 16px 40px rgba(18,199,156,.18);
}
.btn--primary:hover{ filter: brightness(1.03); transform: translateY(-1px); }

.btn--secondary{
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.14);
  color: #fff;
}
.btn--secondary:hover{ background: rgba(255,255,255,.10); }

.btn--ghost{
  background: transparent;
  border-color: rgba(255,255,255,.18);
  color: #fff;
}
.btn--ghost:hover{ background: rgba(255,255,255,.07); }

.btn--wide{ width: 100%; }

/* CTA laranja (Finch-like) */
.btn--cta{
  background: linear-gradient(180deg, var(--cta), var(--cta2));
  color: #1a1206;
  box-shadow: 0 18px 45px rgba(245,158,11,.18);
}
.btn--cta:hover{ filter: brightness(1.03); transform: translateY(-1px); }

/* CTA pulse */
.btn--pulse{
  position: relative;
}
.btn--pulse::after{
  content:"";
  position:absolute; inset:-6px;
  border-radius: 18px;
  border: 2px solid rgba(245,158,11,.28);
  opacity: 0;
  animation: pulse 1.6s infinite;
}
@keyframes pulse{
  0%{ transform: scale(0.98); opacity: 0; }
  30%{ opacity: .9; }
  100%{ transform: scale(1.04); opacity: 0; }
}

/* ===== HERO ===== */
.hero{
  position: relative;
  min-height: 76vh;
  display:flex;
  align-items: center;
  padding: 56px 0;
  background: url("assets/hero.jpg") center/cover no-repeat;
}
.hero__overlay{
  position:absolute; inset:0;
  background:
    radial-gradient(60% 60% at 70% 30%, rgba(0,0,0,.10), rgba(0,0,0,.86)),
    linear-gradient(180deg, rgba(0,0,0,.22), rgba(0,0,0,.88));
}
.hero__grid{
  position: relative;
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 22px;
  align-items: center;
}

.eyebrow{
  font-weight: 950;
  letter-spacing: .12em;
  font-size: 12px;
  opacity: .85;
}
.hero h1{
  margin: 10px 0 12px;
  font-size: clamp(28px, 3.3vw, 46px);
  line-height: 1.05;
  letter-spacing: -0.02em;
}
.accent{ color: var(--accent); }

.bullets{
  margin: 0;
  padding-left: 18px;
  color: rgba(255,255,255,.82);
  line-height: 1.55;
}
.bullets li{ margin: 8px 0; }

.hero__actions{
  display:flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}
.micro{
  margin-top: 10px;
  font-size: 13px;
  color: rgba(255,255,255,.65);
}

/* side card (hero) */
.sidecard{
  background: rgba(8,10,16,.55);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 18px;
  padding: 16px;
  box-shadow: var(--shadow);
}
.sidecard__title{ font-weight: 950; margin-bottom: 10px; }
.sidecard__list{ display:flex; flex-wrap: wrap; gap: 8px; }

.chip{
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(25,230,180,.10);
  border: 1px solid rgba(25,230,180,.25);
  font-size: 12px;
  font-weight: 900;
}
.sidecard__note{
  margin-top: 10px;
  font-size: 13px;
  color: rgba(255,255,255,.70);
}

/* ====== Finch-like band (faixa azul) ====== */
.band{
  position: relative;
  padding: 18px 0;
  background: linear-gradient(90deg, rgba(20,115,255,.88), rgba(14,165,255,.88));
  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.08);
  overflow: hidden;
}
.band::before{
  content:"";
  position:absolute; inset:-40px;
  background: radial-gradient(600px 180px at 20% 50%, rgba(255,255,255,.20), transparent 55%);
  opacity:.35;
  pointer-events:none;
}
.band__inner{
  position: relative;
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 18px;
}
.band__text{
  font-weight: 950;
  color: rgba(255,255,255,.92);
}
.band__sub{
  font-size: 13px;
  color: rgba(255,255,255,.82);
  margin-top: 2px;
}
.countRow{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
}
.countBox{
  min-width: 88px;
  text-align:center;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: 0 14px 40px rgba(0,0,0,.30);
}
.countBox__n{
  font-weight: 950;
  font-size: 22px;
  line-height: 1;
}
.countBox__l{
  font-size: 11px;
  letter-spacing: .08em;
  opacity: .9;
  text-transform: uppercase;
  margin-top: 4px;
}

/* ===== SECTIONS ===== */
.section{ padding: 64px 0; }
.section__title{
  font-size: clamp(22px, 2.3vw, 32px);
  margin: 0 0 18px;
  letter-spacing: -0.02em;
}
.lead{
  margin-top: -6px;
  color: rgba(255,255,255,.72);
  line-height: 1.6;
}
.muted{ color: var(--muted); }

.section--dark{
  background:
    radial-gradient(900px 420px at 15% 20%, rgba(25,230,180,.10), transparent 60%),
    radial-gradient(900px 420px at 85% 60%, rgba(25,230,180,.07), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,.03), rgba(0,0,0,0));
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
}

/* ===== Cards 3 (como funciona) ===== */
.cards3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.card{
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 16px;
  box-shadow: var(--shadow);
  display:flex;
  gap: 14px;
}
.card__num{
  width: 44px; height: 44px;
  border-radius: 12px;
  display:flex; align-items:center; justify-content:center;
  background: rgba(25,230,180,.12);
  border: 1px solid rgba(25,230,180,.25);
  font-weight: 950;
  color: var(--accent);
  flex: 0 0 auto;
}
.card h3{ margin: 0 0 6px; }
.card p{ margin: 0; color: rgba(255,255,255,.72); line-height: 1.5; }

/* ===== Bonus box ===== */
.bonus{ margin-top: 18px; display:flex; justify-content: center; }
.bonus__box{
  width: min(760px, 100%);
  background: rgba(8,10,16,.62);
  border: 1px solid rgba(25,230,180,.18);
  border-radius: 18px;
  padding: 18px;
  box-shadow: var(--shadow);
}
.bonus__title{
  font-weight: 950;
  color: var(--accent);
  margin-bottom: 8px;
}
.bonus ul{
  margin: 0 0 14px;
  padding-left: 18px;
  color: rgba(255,255,255,.75);
}

/* ===== Conteúdo premium (cards) ===== */
.sectionHead{ display:flex; flex-direction:column; gap: 6px; margin-bottom: 12px; }

.gridCards{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 18px;
}
.infoCard{
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 18px;
  padding: 16px;
  box-shadow: var(--shadow);
  display:flex;
  gap: 12px;
  align-items:flex-start;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}
.infoCard:hover{
  transform: translateY(-2px);
  border-color: rgba(25,230,180,.25);
  background: rgba(255,255,255,.05);
}
.infoCard__icon{
  width: 44px; height: 44px;
  border-radius: 14px;
  background: rgba(25,230,180,.12);
  border: 1px solid rgba(25,230,180,.25);
  display:flex; align-items:center; justify-content:center;
  font-size: 18px;
  flex: 0 0 auto;
}
.infoCard h3{ margin: 0 0 6px; font-weight: 950; }
.infoCard p{ margin: 0; color: rgba(255,255,255,.74); line-height: 1.55; }

/* ===== Pills + riskbox (oferta lado esquerdo) ===== */
.pillRow{
  display:flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 12px 0 6px;
}
.pill{
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(25,230,180,.10);
  border: 1px solid rgba(25,230,180,.20);
  font-size: 12px;
  font-weight: 950;
  color: rgba(255,255,255,.88);
}

.riskbox{
  margin-top: 14px;
  padding: 14px;
  border-radius: 16px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
}
.riskbox__title{ font-weight: 950; margin-bottom: 4px; color: rgba(255,255,255,.90); }
.riskbox__text{ color: rgba(255,255,255,.72); line-height: 1.5; font-size: 14px; }

/* ===== Testimonials ===== */
.testimonials{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.tcard{
  background: rgba(8,10,16,.62);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 16px;
  padding: 16px;
  box-shadow: var(--shadow);
}
.tcard__head{
  display:flex;
  align-items:center;
  gap: 10px;
  margin-bottom: 8px;
}
.tbadge{
  width: 26px; height: 26px;
  border-radius: 50%;
  background: rgba(25,230,180,.16);
  border: 1px solid rgba(25,230,180,.30);
  display:flex; align-items:center; justify-content:center;
  color: var(--accent);
  font-weight: 950;
}
.tname{ font-weight: 900; }
.tcard p{
  margin: 0;
  color: rgba(255,255,255,.78);
  line-height: 1.5;
}

/* ===== OFFER section ===== */
.section--offer{
  background:
    radial-gradient(900px 420px at 25% 20%, rgba(245,158,11,.12), transparent 55%),
    radial-gradient(900px 420px at 80% 70%, rgba(25,230,180,.10), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,.03), rgba(0,0,0,0));
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.offer{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 18px;
  align-items: stretch;
}

.offer__badge{
  display:inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(245,158,11,.12);
  border: 1px solid rgba(245,158,11,.22);
  color: rgba(255,255,255,.92);
  font-weight: 950;
  letter-spacing: .06em;
  font-size: 12px;
}

.offer__title{ margin: 12px 0 8px; font-size: clamp(22px, 2.4vw, 34px); }
.offer__subtitle{ margin: 0; color: rgba(255,255,255,.74); line-height: 1.6; }
.offer__bullets{ margin: 14px 0 0; padding-left: 18px; color: rgba(255,255,255,.78); line-height: 1.6; }

/* ===== Pricebox ===== */
.pricebox{
  background: rgba(8,10,16,.70);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 18px;
  padding: 18px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.pricebox::before{
  content:"";
  position:absolute; inset:-2px;
  background: radial-gradient(600px 260px at 30% 20%, rgba(245,158,11,.22), transparent 55%);
  pointer-events:none;
}
.pricebox > *{ position: relative; }

.pricebox__top{
  display:flex;
  align-items:flex-start;
  justify-content: space-between;
  gap: 12px;
}
.kicker{
  font-weight: 950;
  color: rgba(255,255,255,.88);
}

/* “50 vagas” */
.stock{
  display:flex;
  align-items:center;
  gap: 10px;
  margin: 14px 0 10px;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(245,158,11,.10);
  border: 1px solid rgba(245,158,11,.20);
  font-weight: 900;
  color: rgba(255,255,255,.90);
}
.stock__dot{
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--cta);
  box-shadow: 0 0 18px rgba(245,158,11,.60);
}

.pricebox__from{
  color: rgba(255,255,255,.72);
  font-weight: 900;
  margin-bottom: 8px;
}
.strike{ text-decoration: line-through; text-decoration-thickness: 3px; opacity: .95; }

.pricebox__to{
  display:flex;
  align-items:flex-end;
  gap: 6px;
  margin-bottom: 8px;
}
.rs{ font-weight: 950; opacity: .9; transform: translateY(-8px); }
.major{ font-size: 72px; font-weight: 950; letter-spacing: -0.03em; line-height: 1; }
.minor{ font-size: 34px; font-weight: 950; transform: translateY(-10px); opacity: .95; }

.pricebox__note{ color: rgba(255,255,255,.72); font-size: 13px; margin-bottom: 14px; }

.pricebox__trust{
  display:grid;
  grid-template-columns: 1fr;
  gap: 8px;
  margin-top: 12px;
  color: rgba(255,255,255,.78);
  font-weight: 800;
  font-size: 13px;
}

.pricebox__alt{
  display:inline-block;
  margin-top: 12px;
  color: rgba(255,255,255,.80);
  text-decoration: none;
  border-bottom: 1px dashed rgba(245,158,11,.55);
}
.pricebox__alt:hover{ color: #fff; }

/* ===== Timer boxes (Finch-like) ===== */
.timerBoxes{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content:flex-end;
}


.tBox{
  min-width: 78px;
  text-align:center;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 14px 40px rgba(0,0,0,.35);
}
.tN{
  font-weight: 950;
  font-size: 22px;
  line-height: 1;
  color: var(--accent);
}
.tL{
  font-size: 11px;
  letter-spacing: .10em;
  text-transform: uppercase;
  opacity: .78;
  margin-top: 6px;
}

/* ===== FAQ ===== */
.faq{
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 14px;
  padding: 14px;
  margin: 10px 0;
}
.faq summary{ cursor:pointer; font-weight: 950; }
.faq p{ margin: 10px 0 0; color: rgba(255,255,255,.75); line-height: 1.5; }

/* ===== FOOTER ===== */
.footer{
  padding: 26px 0;
  border-top: 1px solid rgba(255,255,255,.06);
}
.footer__inner{
  display:flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: space-between;
  font-size: 13px;
}

/* ===== RESPONSIVO ===== */
@media (max-width: 980px){
  .hero__grid{ grid-template-columns: 1fr; }
  .cards3{ grid-template-columns: 1fr; }
  .gridCards{ grid-template-columns: 1fr; }
  .testimonials{ grid-template-columns: 1fr; }
  .offer{ grid-template-columns: 1fr; }
  .nav{ display:none; }

  .band__inner{ flex-direction: column; align-items:flex-start; }
  .timerBoxes{ justify-content:flex-start; }
  .pricebox__top{ flex-direction: column; align-items:flex-start; }
}

/* ===== Logo no topo ===== */
.brand{
  display:flex;
  align-items:center;
}

.brand__link{
  display:flex;
  align-items:center;
  text-decoration:none;
}

.brand__logo{
  height: 44px;
  width: auto;
  display:block;
  filter: drop-shadow(0 8px 18px rgba(0,0,0,.35));
  transition: transform .18s ease, filter .18s ease;
}

.brand__logo:hover{
  transform: translateY(-1px);
  filter: drop-shadow(0 12px 26px rgba(0,0,0,.45));
}

/* Mobile */
@media (max-width: 768px){
  .brand__logo{ height: 36px; }
}

