:root{
  --bg: #fbf8ff;
  --bg2:#ffffff;
  --text:#121212;
  --muted:#666;
  --border:#e8e1f5;

  /* SEU ROXO */
  --purple:#7211c6;
  --purple-2:#8f2be6;

  --shadow: 0 12px 30px rgba(16, 8, 30, .08);
  --radius: 16px;
}


*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(900px 420px at 50% 0%, rgba(111,44,255,.10), transparent 60%),
    radial-gradient(700px 380px at 50% 20%, rgba(111,44,255,.08), transparent 55%),
    linear-gradient(180deg, #ffffff 0%, var(--bg) 60%, #ffffff 100%);
}

a{ color:inherit; text-decoration:none; }
.container{
  width:min(1120px, calc(100% - 48px));
  margin:0 auto;
}

/* HEADER */
.header{
  position:sticky;
  top:0;
  z-index:50;
  background: rgba(255,255,255,.78);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(232,225,245,.9);
}
.header__inner{
  height:72px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}

.brand{
  display:flex;
  align-items:center;
  gap:10px;
  min-width: 190px;
}
.brand__mark{ width:28px; height:28px; flex:0 0 28px; }
.brand__text{
  font-weight:700;
  letter-spacing:-.02em;
  font-size: 15px;
  opacity:.95;
}

/* NAV */
.nav{ position:relative; }
.nav__toggle{
  display:none;
  width:44px;
  height:44px;
  border:1px solid var(--border);
  border-radius:12px;
  background:#fff;
  cursor:pointer;
  align-items:center;
  justify-content:center;
  gap:4px;
}
.nav__toggle span{
  display:block;
  width:18px;
  height:2px;
  background: #1d1d1d;
  border-radius:999px;
}

.nav__list{
  list-style:none;
  display:flex;
  align-items:center;
  gap:26px;
  padding:0;
  margin:0;
}
.nav__link{
  font-size:14px;
  color:#4a4a4a;
  font-weight:500;
  padding:10px 2px;
  position:relative;
}
.nav__link:hover{ color:#101010; }
.nav__link.is-active{
  color:#101010;
}
.nav__link.is-active::after{
  content:"";
  position:absolute;
  left:0; right:0; bottom:2px;
  height:2px;
  border-radius:999px;
  background: var(--purple);
  opacity:.9;
}

/* BUTTONS */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  border-radius: 14px;
  padding: 12px 16px;
  font-weight: 600;
  border: 1px solid transparent;
  cursor:pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, border-color .15s ease;
  user-select:none;
  white-space:nowrap;
}
.btn:active{ transform: translateY(1px); }

.btn--pill{ border-radius:999px; padding: 11px 18px; }
.btn--xl{ padding: 14px 18px; border-radius: 14px; }

.btn--primary{
  background: var(--purple);
  color:#fff;
  box-shadow: 0 10px 22px rgba(111,44,255,.22);
}
.btn--primary:hover{
  background: #6510b0; /* hover baseado no #7211c6 */
  box-shadow: 0 14px 26px rgba(114,17,198,.26);
}

.btn--outline{
  background: rgba(255,255,255,.8);
  color: var(--purple);
  border-color: rgba(111,44,255,.45);
}
.btn--outline:hover{
  background:#fff;
  border-color: rgba(111,44,255,.60);
  box-shadow: 0 10px 18px rgba(16, 8, 30, .06);
}

.btn__arrow{
  font-size: 18px;
  transform: translateY(-1px);
}

/* HERO */
.hero{
  padding: 72px 0 90px;
}
.hero__inner{
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
}

.hero__badge{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(111,44,255,.20);
  background: rgba(111,44,255,.08);
  color: var(--purple);
  font-weight:600;
  font-size: 14px;
  box-shadow: 0 10px 22px rgba(16, 8, 30, .05);
}
.dot{
  width:8px;
  height:8px;
  border-radius:50%;
  background: var(--purple);
  box-shadow: 0 0 0 6px rgba(111,44,255,.10);
}

.hero__title{
  margin: 26px 0 14px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.08;
  font-size: clamp(36px, 4.2vw, 56px);
  max-width: 980px;
}
.accent{
  color: var(--purple);
}

.hero__subtitle{
  margin: 0;
  max-width: 820px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--muted);
}
.hero__subtitle strong{
  color:#121212;
  font-weight: 800;
}

.hero__features{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:18px;
  margin: 26px 0 24px;
  color:#2a2a2a;
  font-size:14px;
}
.feature{
  display:flex;
  align-items:center;
  gap:10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.75);
  border: 1px solid rgba(232,225,245,.95);
  box-shadow: 0 10px 24px rgba(16, 8, 30, .04);
}
.check{
  width:22px;
  height:22px;
  border-radius: 999px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  color: var(--purple);
  background: rgba(111,44,255,.10);
  border: 1px solid rgba(111,44,255,.18);
}
.check svg{ width:14px; height:14px; }

.hero__actions{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  justify-content:center;
}

/* ANCHOR PLACEHOLDERS (pra testar o scroll) */
.anchor-section{
  scroll-margin-top: 90px;
  height: 420px;
}

/* Contato (placeholder) */
.contact-card{
  width:min(720px, 100%);
  margin: 40px auto 0;
  padding: 26px;
  border-radius: 18px;
  background: rgba(255,255,255,.9);
  border: 1px solid rgba(232,225,245,.95);
  box-shadow: var(--shadow);
  text-align:left;
}
.contact-card h2{ margin:0 0 8px; letter-spacing:-.02em; }
.contact-card p{ margin:0 0 14px; color:var(--muted); }

/* ANIMAÇÕES */
[data-animate]{
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .6s ease, transform .6s ease;
}
.is-visible{
  opacity:1;
  transform: translateY(0);
}

/* RESPONSIVO */
.br-desktop{ display:inline; }
@media (max-width: 920px){
  .header__cta{ display:none; }
  .nav__toggle{ display:flex; }
  .nav__list{
    position:absolute;
    right:0;
    top:56px;
    width: 240px;
    flex-direction:column;
    align-items:flex-start;
    gap:0;
    padding: 10px;
    border-radius: 16px;
    background:#fff;
    border: 1px solid rgba(232,225,245,.95);
    box-shadow: var(--shadow);
    display:none;
  }
  .nav.is-open .nav__list{ display:flex; }
  .nav__link{
    width:100%;
    padding: 12px 12px;
  }
  .br-desktop{ display:none; }
}

@media (max-width: 520px){
  .container{ width: calc(100% - 28px); }
  .hero{ padding: 58px 0 74px; }
  .hero__features{ gap:12px; }
  .feature{ border-radius: 14px; }
}
/* VIDEO + MÉTRICAS */
.media{
  padding: 26px 0 10px;
}

.media__wrap{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap: 18px;
}

/* container responsivo do vídeo */
.video{
  width: min(900px, 100%);
  border-radius: 18px;
  overflow:hidden;
  background:#fff;
  border: 1px solid rgba(232,225,245,.95);
  box-shadow: 0 22px 45px rgba(16, 8, 30, .12);
}

.video iframe{
  width:100%;
  aspect-ratio: 16 / 9;
  display:block;
}

/* cards abaixo */
.stats{
  display:flex;
  gap: 14px;
  flex-wrap:wrap;
  justify-content:center;
  width: min(900px, 100%);
}
.video, .stats { width: min(1200px, 100%); }


.stat{
  width: 140px;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(232,225,245,.95);
  border-radius: 14px;
  padding: 12px 10px;
  text-align:center;
  box-shadow: 0 14px 28px rgba(16, 8, 30, .10);
}

.stat__value{
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -.02em;
  color: var(--purple); /* #7211c6 */
}

.stat__label{
  font-size: 12px;
  color: var(--muted);
  margin-top: 2px;
}
/* =========================
   VIDEO + MÉTRICAS (GRANDE NO DESKTOP)
   ========================= */
.video{
  width: min(900px, calc(100vw - 120px));
  margin: 0 auto;
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(232,225,245,.95);
  box-shadow: 0 22px 45px rgba(16, 8, 30, .12);
}

.video iframe{
  width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
}

.stats{
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  width: min(1400px, calc(100vw - 120px));
  margin: 14px auto 0;
}

@media (max-width: 700px){
  .video,
  .stats{
    width: calc(100vw - 28px);
  }
}
/* =========================
   SEÇÃO COMPARATIVO
   ========================= */
.compare{
  padding: 86px 0 40px;
}

.compare__head{
  text-align:center;
  max-width: 980px;
  margin: 0 auto 46px;
}

.compare__kicker{
  font-size: 12px;
  letter-spacing: .18em;
  font-weight: 800;
  color: var(--purple); /* #7211c6 */
  margin-bottom: 14px;
}

.compare__title{
  margin: 0 0 12px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.06;
  font-size: clamp(36px, 4.2vw, 56px);
}

.compare__subtitle{
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
  font-size: 16px;
}

.compare__grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
  align-items: stretch;
}

/* painéis */
.panel{
  border-radius: 22px;
  background: rgba(255,255,255,.92);
  border: 2px solid rgba(232,225,245,.95);
  box-shadow: 0 18px 40px rgba(16, 8, 30, .10);
  padding: 28px;
  display:flex;
  flex-direction:column;
  min-height: 100%;
}

.panel--bad{
  border-color: rgba(255, 120, 120, .45);
}

.panel--good{
  border-color: rgba(114,17,198,.35);
  box-shadow: 0 18px 40px rgba(114,17,198,.10);
}

.panel__top{
  display:flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 18px;
}

.panel__badge{
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display:flex;
  align-items:center;
  justify-content:center;
  flex: 0 0 46px;
  border: 1px solid rgba(232,225,245,.95);
}

.panel__badge svg{ width: 22px; height: 22px; }

.panel__badge--bad{
  background: rgba(255, 80, 80, .10);
  color: #ff9100;
  border-color: rgba(255, 80, 80, .25);
}

.panel__badge--good{
  background: rgba(114,17,198,.12);
  color: var(--purple);
  border-color: rgba(114,17,198,.22);
}

.panel__title{
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -.02em;
  margin: 0;
}

.panel__desc{
  font-size: 13px;
  color: #777;
  margin-top: 4px;
  font-weight: 600;
}

.panel__desc--good{
  color: rgba(114,17,198,.9);
}

/* lista */
.panel__list{
  list-style:none;
  padding:0;
  margin: 10px 0 0;
  display:flex;
  flex-direction:column;
  gap: 16px;
}

.panel__item{
  display:flex;
  align-items:center;
  gap: 12px;
  font-weight: 600;
  color: #1c1c1c;
}

.i{
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border: 1px solid rgba(232,225,245,.95);
  flex: 0 0 38px;
}
.i svg{ width: 18px; height: 18px; }

.i--bad{
  background: rgba(255, 120, 120, .12);
  color: #ff9100;
  border-color: rgba(255, 120, 120, .22);
}

.i--good{
  background: rgba(114,17,198,.10);
  color: var(--purple);
  border-color: rgba(114,17,198,.18);
}

/* resultado */
.panel__result{
  margin-top: 22px;
  border-radius: 12px;
  padding: 12px 14px;
  display:flex;
  align-items:center;
  gap: 10px;
  font-weight: 700;
  font-size: 13px;
}

.panel__result strong{ font-weight: 900; }

.panel__resultIcon{
  width: 24px;
  height: 24px;
  border-radius: 8px;
  display:flex;
  align-items:center;
  justify-content:center;
  flex: 0 0 24px;
  font-size: 14px;
}

.panel__result--bad{
  background: rgba(255, 120, 120, .10);
  color: #ff9100;
}

.panel__result--good{
  background: rgba(114,17,198,.08);
  color: var(--purple);
}

/* responsivo */
@media (max-width: 980px){
  .compare__grid{
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .panel{
    padding: 22px;
  }
}
/* =========================
   HOVER EFEITO (CARDS) - ROXO NO GOOD / VERMELHO NO BAD
   ========================= */

.panel{
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
  will-change: transform;
}

.panel:hover{
  transform: translateY(-6px);
}

/* GOOD (ROXO) */
.panel--good:hover{
  border-color: rgba(114,17,198,.70);
  box-shadow:
    0 28px 64px rgba(16, 8, 30, .14),
    0 0 0 3px rgba(114,17,198,.12),
    0 22px 52px rgba(114,17,198,.18);
}

.panel--good:hover .panel__result--good{
  background: rgba(114,17,198,.10);
}

.panel--good:hover .i--good{
  background: rgba(114,17,198,.14);
  border-color: rgba(114,17,198,.28);
}

/* BAD (VERMELHO) */
.panel--bad:hover{
  border-color: #ff9100;
  box-shadow:
    0 28px 64px rgba(16, 8, 30, .14),
    0 0 0 3px rgba(255, 59, 59, .10),
    0 22px 52px rgba(255, 59, 59, .14);
}

.panel--bad:hover .panel__result--bad{
  background: rgba(255, 59, 59, .10);
}

.panel--bad:hover .i--bad{
  background: rgba(255, 120, 120, .16);
  border-color: rgba(255, 120, 120, .28);
}

/* Itens com hover suave */
.panel__item{
  transition: transform .18s ease, background .18s ease;
  border-radius: 12px;
  padding: 6px 8px;
}

.panel:hover .panel__item:hover{
  transform: translateX(4px);
}

/* Hover do item acompanha a cor do painel */
.panel--good:hover .panel__item:hover{
  background: rgba(114,17,198,.06);
}

.panel--bad:hover .panel__item:hover{
  background: rgba(255, 59, 59, .06);
}
/* =========================
   SEÇÃO NOSSA OPERAÇÃO
   ========================= */
.ops{
  padding: 86px 0 40px;
}

.ops__head{
  text-align:center;
  max-width: 980px;
  margin: 0 auto 44px;
}

.ops__kicker{
  font-size: 12px;
  letter-spacing: .18em;
  font-weight: 800;
  color: var(--purple); /* #7211c6 */
  margin-bottom: 14px;
}

.ops__title{
  margin: 0 0 12px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.06;
  font-size: clamp(34px, 4.2vw, 56px);
}

.ops__subtitle{
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
  font-size: 16px;
}

.ops__grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}

/* cards */
.ops-card{
  border-radius: 18px;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(232,225,245,.95);
  box-shadow: 0 14px 28px rgba(16, 8, 30, .08);
  overflow:hidden;
  display:flex;
  flex-direction:column;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.ops-card:hover{
  transform: translateY(-6px);
  border-color: rgba(114,17,198,.45);
  box-shadow:
    0 22px 48px rgba(16, 8, 30, .12),
    0 0 0 3px rgba(114,17,198,.08);
}

.ops-card__media{
  position:relative;
  height: 227px;
  background: rgba(114,17,198,.06);
}

.ops-card__media img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.ops-card__icon{
  position:absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--purple);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow: 0 14px 26px rgba(114,17,198,.22);
}

.ops-card__icon svg{
  width: 20px;
  height: 20px;
}

.ops-card__body{
  padding: 16px 18px 18px;
}

.ops-card__title{
  margin: 2px 0 8px;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -.02em;
}

.ops-card__text{
  margin: 0;
  color: #6c6c6c;
  font-size: 13px;
  line-height: 1.65;
}

/* responsivo */
@media (max-width: 980px){
  .ops__grid{ grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (max-width: 620px){
  .ops__grid{ grid-template-columns: 1fr; }
  .ops-card__media{ height: 170px; }
}
/* =========================
   DEPOIMENTOS
   ========================= */
.testimonials{
  background: var(--purple); /* #7211c6 */
  padding: 90px 0 80px;
  color: #fff;
}

.testimonials__inner{
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
  text-align: center;
}

.pill{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.16);
  border: 1px solid rgba(255,255,255,.22);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .06em;
}

.pill__icon{
  width: 18px;
  height: 18px;
  border-radius: 8px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background: rgba(255,255,255,.18);
}

.testimonials__title{
  margin: 16px 0 28px;
  font-weight: 900;
  letter-spacing: -.03em;
  line-height: 1.05;
  font-size: clamp(34px, 4.2vw, 56px);
}

/* slider wrapper */
.t-slider{
  position: relative;
  display:flex;
  align-items:center;
  justify-content:center;
  gap: 22px;
}

/* arrows */
.t-nav{
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(255,255,255,.14);
  color:#fff;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size: 22px;
  line-height: 1;
  transition: transform .16s ease, background .16s ease, box-shadow .16s ease;
}

.t-nav:hover{
  background: rgba(255,255,255,.20);
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(0,0,0,.18);
}

/* viewport/track */
.t-viewport{
  width: min(920px, 100%);
  overflow: hidden;
}

.t-track{
  display:flex;
  transition: transform .35s ease;
  will-change: transform;
}

/* card */
.t-card{
  flex: 0 0 100%;
  background: #fff;
  color: #151515;
  border-radius: 18px;
  padding: 34px 44px 28px;
  text-align:left;
  box-shadow: 0 24px 55px rgba(0,0,0,.18);
  position: relative;
  min-height: 240px;
}

.t-quoteMark{
  color: rgba(114,17,198,.25);
  font-size: 56px;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 10px;
}

.t-text{
  margin: 0;
  font-size: 18px;
  line-height: 1.7;
  color: #1f1f1f;
  max-width: 760px;
}

/* footer */
.t-foot{
  margin-top: 22px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 16px;
}

.t-person{
  display:flex;
  align-items:center;
  gap: 12px;
}

.t-avatar{
  width: 44px;
  height: 44px;
  border-radius: 999px;
  object-fit: cover;
  border: 2px solid rgba(114,17,198,.18);
}

.t-name{
  font-weight: 900;
  font-size: 14px;
  letter-spacing: -.01em;
}

.t-role{
  font-size: 12px;
  color: #777;
  margin-top: 2px;
}

.t-stars{
  color: #f4b400; /* amarelo estrelas */
  letter-spacing: 2px;
  font-size: 14px;
}

/* dots */
.t-dots{
  display:flex;
  justify-content:center;
  gap: 8px;
  margin-top: 22px;
}

.t-dot{
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255,255,255,.38);
  border: 1px solid rgba(255,255,255,.22);
  cursor:pointer;
  transition: transform .15s ease, background .15s ease, width .15s ease;
}

.t-dot.is-active{
  width: 26px;
  background: rgba(255,255,255,.90);
}

@media (max-width: 900px){
  .t-slider{ gap: 12px; }
  .t-card{ padding: 28px 22px 22px; }
  .t-text{ font-size: 16px; }
  .t-nav{ width: 40px; height: 40px; }
}

@media (max-width: 520px){
  .t-nav{ display:none; } /* some com setas no mobile */
  .t-foot{ flex-direction:column; align-items:flex-start; }
}
/* =========================
   DEPOIMENTOS - FUNDO ROXO FULL WIDTH
   ========================= */

/* garante que a seção não fique limitada por container/padding */
.testimonials{
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  background: var(--purple);
}

/* se você tiver algum padding lateral vindo do container interno,
   mantém só o conteúdo centralizado sem cortar o fundo */
.testimonials__inner{
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
}
/* =========================
   SEÇÃO COMPARE (2 CARDS) - FUNDO ROXO + DETALHES LARANJA
   ========================= */
:root{
  --orange: #ff5807;
}

/* seção roxa full width */
.compare{
  background: var(--purple);
  color: #fff;

  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);

  padding: 90px 0 70px;
}

.compare__head{
  text-align: center;
  max-width: 980px;
  margin: 0 auto 44px;
  padding: 0 24px;
}

.compare__kicker{
  font-size: 12px;
  letter-spacing: .18em;
  font-weight: 800;
  color: rgba(255,255,255,.85);
  margin-bottom: 14px;
}

.compare__title{
  margin: 0 0 12px;
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.06;
  font-size: clamp(34px, 4.2vw, 56px);
  color: #fff;
}

.compare__subtitle{
  margin: 0;
  color: rgba(255,255,255,.82);
  line-height: 1.7;
  font-size: 16px;
}

/* no roxo, destaque vira laranja */
.compare .accent{
  color: var(--orange);
}

/* grid centralizado com tamanho "original" */
.compare__grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 560px));
  justify-content: center;
  gap: 32px;

  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
  align-items: stretch;
}

/* cards */
.compare .panel{
  border-radius: 22px;
  background: rgba(255,255,255,.96);
  border: 2px solid rgba(255, 88, 7, .28);
  box-shadow: 0 20px 50px rgba(0,0,0,.18);
  padding: 28px;
  display:flex;
  flex-direction:column;
  min-height: 100%;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
  will-change: transform;
}

.compare .panel:hover{
  transform: translateY(-6px);
  border-color: rgba(255, 88, 7, .70);
  box-shadow:
    0 26px 64px rgba(0,0,0,.22),
    0 0 0 3px rgba(255,88,7,.14),
    0 22px 55px rgba(255,88,7,.18);
}

/* topo do card */
.compare .panel__top{
  display:flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 18px;
}

.compare .panel__badge{
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display:flex;
  align-items:center;
  justify-content:center;
  flex: 0 0 46px;

  background: rgba(255, 88, 7, .12);
  border: 1px solid rgba(255, 88, 7, .28);
  color: var(--orange);
}

.compare .panel__badge svg{ width: 22px; height: 22px; }

.compare .panel__title{
  font-size: 18px;
  font-weight: 900;
  letter-spacing: -.02em;
  margin: 0;
  color:#141414;
}

.compare .panel__desc{
  font-size: 13px;
  margin-top: 4px;
  font-weight: 800;
  color: rgba(255, 88, 7, .95);
}

/* lista */
.compare .panel__list{
  list-style:none;
  padding:0;
  margin: 10px 0 0;
  display:flex;
  flex-direction:column;
  gap: 16px;
}

.compare .panel__item{
  display:flex;
  align-items:center;
  gap: 12px;
  font-weight: 700;
  color: #1c1c1c;

  border-radius: 12px;
  padding: 6px 8px;
  transition: transform .18s ease, background .18s ease;
}

/* ícone do item */
.compare .i{
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  flex: 0 0 38px;

  background: rgba(255, 88, 7, .10);
  border: 1px solid rgba(255, 88, 7, .22);
  color: var(--orange);
}
.compare .i svg{ width: 18px; height: 18px; }

.compare .panel:hover .panel__item:hover{
  background: rgba(255, 88, 7, .08);
  transform: translateX(4px);
}

/* resultado */
.compare .panel__result{
  margin-top: 22px;
  border-radius: 12px;
  padding: 12px 14px;
  display:flex;
  align-items:center;
  gap: 10px;
  font-weight: 800;
  font-size: 13px;

  background: rgba(255, 88, 7, .10);
  color: #a33400;
}

.compare .panel__result strong{ font-weight: 900; }

.compare .panel__resultIcon{
  width: 24px;
  height: 24px;
  border-radius: 8px;
  display:flex;
  align-items:center;
  justify-content:center;
  flex: 0 0 24px;
  font-size: 14px;
  background: rgba(255, 88, 7, .16);
}

/* responsivo */
@media (max-width: 980px){
  .compare{
    padding: 78px 0 60px;
  }

  .compare__grid{
    grid-template-columns: 1fr;
    width: min(900px, calc(100% - 28px));
    gap: 18px;
  }

  .compare .panel{
    padding: 22px;
  }
}
/* Fidelizar em branco na seção roxa */
.compare .accent{
  color: #fff !important;
}
/* =========================
   COMPARE - HOVER SEM ROXO (TUDO LARANJA)
   ========================= */

/* quando passar o mouse, qualquer ícone/badge dentro do card fica laranja */
.compare .panel:hover .panel__badge,
.compare .panel:hover .panel__badge svg,
.compare .panel:hover .i,
.compare .panel:hover .i svg{
  color: var(--orange) !important;
  border-color: rgba(255, 88, 7, .28) !important;
  background: rgba(255, 88, 7, .12) !important;
}

/* evita regras antigas tipo .panel--good:hover .i--good { ... roxo ... } */
.compare .panel--good:hover .i--good,
.compare .panel--bad:hover .i--bad,
.compare .panel--good:hover .panel__badge--good,
.compare .panel--bad:hover .panel__badge--bad{
  color: var(--orange) !important;
  border-color: rgba(255, 88, 7, .28) !important;
  background: rgba(255, 88, 7, .12) !important;
}

/* resultado também fica laranja no hover */
.compare .panel:hover .panel__result{
  background: rgba(255, 88, 7, .10) !important;
  color: #a33400 !important;
}
.compare .panel:hover .panel__resultIcon{
  background: rgba(255, 88, 7, .16) !important;
}
/* =========================
   CADASTRO / PROPOSTA (MATCH DO EXEMPLO)
   ========================= */
.lead{
  padding: 96px 0 90px;
}

.lead__inner{
  width: min(1200px, calc(100% - 64px));
  margin: 0 auto;
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}

/* lado esquerdo */
.lead__kicker{
  font-size: 12px;
  letter-spacing: .18em;
  font-weight: 900;
  color: var(--purple);
  margin-bottom: 14px;
}

.lead__title{
  margin: 0 0 16px;
  font-weight: 950;
  letter-spacing: -0.04em;
  line-height: 1.02;
  font-size: clamp(42px, 4.8vw, 64px);
  color: #111;
}

.lead__subtitle{
  margin: 0 0 26px;
  color: #5c5c5c;
  line-height: 1.8;
  font-size: 16px;
  max-width: 560px;
}

.lead__list{
  list-style:none;
  padding:0;
  margin: 0 0 28px;
  display:flex;
  flex-direction:column;
  gap: 16px;
}

.lead__list li{
  display:flex;
  align-items:center;
  gap: 12px;
  color:#1a1a1a;
  font-weight: 700;
  font-size: 14px;
}

.lead__check{
  width: 22px;
  height: 22px;
  border-radius: 999px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background: rgba(114,17,198,.12);
  color: var(--purple);
  font-size: 12px;
  border: 1px solid rgba(114,17,198,.22);
}

/* box de segurança */
.lead__secure{
  display:flex;
  gap: 12px;
  align-items:flex-start;
  padding: 16px 18px;
  border-radius: 14px;
  background: rgba(114,17,198,.06);
  border: 1px solid rgba(232,225,245,.95);
  color: #5a5a5a;
  max-width: 620px;
  line-height: 1.55;
  font-size: 13px;
}

.lead__secure strong{
  color: #1b1b1b;
  font-weight: 900;
}

.lead__lock{ margin-top: 2px; }

/* card do formulário (lado direito) */
.lead-form{
  background: rgba(248,246,255,.95);
  border: 1px solid rgba(232,225,245,.95);
  border-radius: 18px;
  box-shadow:
    0 18px 38px rgba(16, 8, 30, .10),
    0 1px 0 rgba(255,255,255,.7) inset;
  padding: 26px;
}

.field{
  display:flex;
  flex-direction:column;
  gap: 8px;
  margin-bottom: 16px;
}

.field label{
  font-weight: 800;
  font-size: 13px;
  color:#141414;
}

.field label span{ color: #c11; }

.field input,
.field select{
  height: 46px;
  border-radius: 10px;
  border: 1px solid rgba(210,210,230,.9);
  background: #fff;
  padding: 0 14px;
  font-size: 14px;
  outline: none;
  transition: border-color .15s ease, box-shadow .15s ease;
}

.field input::placeholder{ color:#9a9a9a; }
.field select{ color:#444; }

.field input:focus,
.field select:focus{
  border-color: rgba(114,17,198,.55);
  box-shadow: 0 0 0 4px rgba(114,17,198,.12);
}

/* botão grande igual ao exemplo */
.btn-submit{
  width: 100%;
  height: 56px;
  border: none;
  border-radius: 12px;
  background: var(--purple);
  color:#fff;
  font-weight: 900;
  font-size: 16px;
  cursor: pointer;
  display:flex;
  align-items:center;
  justify-content:center;
  gap: 12px;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  box-shadow: 0 18px 34px rgba(114,17,198,.22);
  margin-top: 6px;
}

.btn-submit:hover{
  transform: translateY(-1px);
  background: #6510b0;
  box-shadow: 0 22px 40px rgba(114,17,198,.28);
}

.btn-submit:active{
  transform: translateY(0px);
}

.btn-submit:disabled{
  opacity: .7;
  cursor: not-allowed;
  transform: none;
}

.btn-ico{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  transform: translateY(1px);
  opacity: .95;
}

/* status */
.lead-form__status{
  margin: 12px 2px 0;
  font-size: 13px;
  color: #2f2f2f;
  min-height: 18px;
}

/* responsivo */
@media (max-width: 980px){
  .lead{
    padding: 70px 0 60px;
  }

  .lead__inner{
    width: min(980px, calc(100% - 28px));
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .lead__title{
    font-size: clamp(34px, 8vw, 46px);
  }

  .lead-form{
    padding: 20px;
  }
}
/* =========================
   FOOTER
   ========================= */
.site-footer{
  background: var(--purple);
  color: rgba(255,255,255,.92);

  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);

  padding: 56px 0 0;
}

.site-footer__inner{
  width: min(1200px, calc(100% - 64px));
  margin: 0 auto;
  display:grid;
  grid-template-columns: 1.2fr .9fr .8fr;
  gap: 56px;
  align-items:start;
}

/* logo */
.f-logo{
  display:flex;
  align-items:center;
  gap: 12px;
  text-decoration:none;
  color:#fff;
}

.f-logo__mark{
  width: 36px;
  height: 36px;
  border-radius: 12px;
  display:flex;
  align-items:center;
  justify-content:center;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.18);
}

.f-logo__mark svg{ width: 22px; height: 22px; }

.f-logo__text{
  display:flex;
  flex-direction:column;
  line-height: 1.05;
}

.f-logo__name{
  font-weight: 950;
  font-size: 20px;
  letter-spacing: -.02em;
}

.f-logo__sub{
  font-size: 11px;
  font-weight: 900;
  opacity: .85;
  letter-spacing: .22em;
}

/* descrição */
.f-desc{
  margin: 14px 0 18px;
  color: rgba(255,255,255,.78);
  line-height: 1.7;
  font-size: 14px;
  max-width: 520px;
}

/* sociais */
.f-social{
  display:flex;
  gap: 10px;
  margin-top: 8px;
}

.f-social__btn{
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display:flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  color:#fff;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.18);
  transition: transform .16s ease, background .16s ease;
}

.f-social__btn svg{ width: 18px; height: 18px; }

.f-social__btn:hover{
  transform: translateY(-2px);
  background: rgba(255,255,255,.18);
}

/* títulos */
.f-title{
  margin: 0 0 14px;
  font-weight: 900;
  font-size: 16px;
  color:#fff;
}

/* listas */
.f-list,
.f-links{
  list-style:none;
  padding:0;
  margin:0;
  display:flex;
  flex-direction:column;
  gap: 12px;
  font-size: 14px;
}

.f-list a,
.f-links a{
  color: rgba(255,255,255,.86);
  text-decoration:none;
}

.f-list a:hover,
.f-links a:hover{
  color:#fff;
  text-decoration: underline;
}

.f-ico{
  width: 22px;
  display:inline-flex;
  justify-content:center;
  margin-right: 8px;
}

/* divisor */
.site-footer__divider{
  width: min(1200px, calc(100% - 64px));
  margin: 36px auto 0;
  height: 1px;
  background: rgba(255,255,255,.18);
}

/* bottom */
.site-footer__bottom{
  padding: 18px 0 22px;
}

.site-footer__bottomInner{
  width: min(1200px, calc(100% - 64px));
  margin: 0 auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 18px;
  color: rgba(255,255,255,.78);
  font-size: 13px;
}

.f-legal{
  display:flex;
  gap: 22px;
}

.f-legal a{
  color: rgba(255,255,255,.78);
  text-decoration:none;
}
.f-legal a:hover{
  color:#fff;
  text-decoration: underline;
}

/* responsivo */
@media (max-width: 980px){
  .site-footer__inner{
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .site-footer__inner,
  .site-footer__divider,
  .site-footer__bottomInner{
    width: min(980px, calc(100% - 28px));
  }

  .site-footer__bottomInner{
    flex-direction: column;
    align-items:flex-start;
  }
}
/* =========================
   FOOTER - ALINHAR TEXTOS À ESQUERDA
   ========================= */
.site-footer,
.site-footer *{
  text-align: left;
}

/* garante que as colunas não fiquem centralizadas */
.site-footer__inner{
  justify-items: start;
  align-items: start;
}

/* listas/itens alinhados na esquerda */
.f-list,
.f-links{
  align-items: flex-start;
}

/* remove qualquer centralização do bloco de links rápidos */
.f-col:last-child{
  justify-self: start;
}

/* bottom alinhado */
.site-footer__bottomInner{
  justify-content: space-between;
  text-align: left;
}

.f-legal{
  justify-content: flex-end; /* mantém os links no canto direito no desktop */
}
@media (max-width: 980px){
  .f-legal{ justify-content: flex-start; } /* no mobile fica tudo alinhado à esquerda */
}
/* LOGO DO FOOTER 100% BRANCA (força) */
.site-footer .f-logo_text img,
.site-footer .f-logo__text img,
.site-footer .f-logo img{
  filter: brightness(0) invert(1) !important;
  opacity: 1 !important;
}
/* =========================
   REMOVE SCROLL LATERAL + ESPAÇO ABAIXO DO FOOTER
   ========================= */

/* 1) corta qualquer overflow lateral que esteja criando a barra */
html, body{
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

/* 2) remove espaço padrão do body */
body{
  margin: 0;
}

/* 3) footer full width sem estourar tela (evita 100vw + scrollbar) */
.site-footer{
  width: 100% !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

/* 4) garante que o footer encoste no final */
.site-footer{
  padding-bottom: 0 !important;
}

/* 5) se tiver alguma seção final com margin/padding empurrando */
main, section{
  overflow-x: clip; /* mais seguro que hidden em alguns casos */
}
:root{
  --purple:#7211c6;
}

.lead{
  padding: 70px 0;
}

.lead__inner{
  width: min(1200px, calc(100% - 64px));
  margin: 0 auto;
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: start;
}

.lead__kicker{
  font-size: 12px;
  letter-spacing: .18em;
  font-weight: 900;
  color: var(--purple);
  margin-bottom: 10px;
}

.lead__title{
  margin: 0 0 10px;
  font-weight: 950;
  letter-spacing: -0.03em;
  line-height: 1.05;
  font-size: clamp(30px, 4vw, 48px);
}

.lead__subtitle{
  margin: 0;
  color: #666;
  line-height: 1.7;
  font-size: 15px;
  max-width: 520px;
}

.lead-form{
  background: rgba(248,246,255,.95);
  border: 1px solid rgba(232,225,245,.95);
  border-radius: 18px;
  box-shadow: 0 18px 38px rgba(16, 8, 30, .10);
  padding: 22px;
}

.field{
  display:flex;
  flex-direction:column;
  gap: 7px;
  margin-bottom: 14px;
}

.field label{
  font-weight: 800;
  font-size: 13px;
  color:#141414;
}
.field label span{ color:#c11; }

.field input,
.field select{
  height: 46px;
  border-radius: 10px;
  border: 1px solid rgba(210,210,230,.9);
  background: #fff;
  padding: 0 14px;
  font-size: 14px;
  outline: none;
}
.field input:focus,
.field select:focus{
  border-color: rgba(114,17,198,.55);
  box-shadow: 0 0 0 4px rgba(114,17,198,.12);
}

.btn-submit{
  width: 100%;
  height: 56px;
  border: none;
  border-radius: 12px;
  background: var(--purple);
  color:#fff;
  font-weight: 900;
  font-size: 16px;
  cursor: pointer;
  display:flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  box-shadow: 0 18px 34px rgba(114,17,198,.22);
}
.btn-submit:disabled{ opacity:.7; cursor:not-allowed; }

.lead-form__status{
  margin: 10px 2px 0;
  font-size: 13px;
  min-height: 18px;
}
.lead-form__status.ok{ color:#0b7a2b; font-weight:800; }
.lead-form__status.err{ color:#b30000; font-weight:800; }

/* fallback box */
.fallback{
  margin-top: 14px;
  padding: 14px;
  border-radius: 14px;
  background: rgba(255,255,255,.9);
  border: 1px solid rgba(0,0,0,.08);
}

.fallback__title{
  font-weight: 900;
  margin-bottom: 10px;
}

.fallback__msg{
  width: 100%;
  min-height: 160px;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,.12);
  padding: 10px 12px;
  resize: vertical;
  font-size: 13px;
  line-height: 1.5;
}

.fallback__actions{
  margin-top: 10px;
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
}

.fallback__btn{
  height: 44px;
  padding: 0 14px;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,.12);
  background: #fff;
  cursor: pointer;
  font-weight: 800;
  text-decoration: none;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  color:#111;
}

.fallback__btn--outline{
  border-color: rgba(114,17,198,.35);
}

.fallback__note{
  margin-top: 10px;
  font-size: 12px;
  color:#666;
  line-height: 1.5;
}

@media (max-width: 980px){
  .lead__inner{
    width: min(980px, calc(100% - 28px));
    grid-template-columns: 1fr;
    gap: 18px;
  }
}
/* =========================
   PATCH RESPONSIVO (HERO)
   ========================= */

/* melhora o respiro geral no mobile */
@media (max-width: 720px){
  .hero{
    padding: 52px 0 64px;
  }

  /* um pouco menos de padding lateral só no HERO */
  .hero .container{
    width: min(1120px, calc(100% - 28px));
  }

  .hero__badge{
    font-size: 13px;
    padding: 9px 12px;
    gap: 8px;
  }

  .hero__title{
    margin: 18px 0 10px;
    /* tamanho melhor pro celular */
    font-size: clamp(30px, 9vw, 44px);
    line-height: 1.06;
    max-width: 680px;
  }

  .hero__subtitle{
    font-size: 15px;
    line-height: 1.65;
    max-width: 640px;
  }

  /* deixa as “pílulas” mais organizadas (em grid) */
  .hero__features{
    width: 100%;
    max-width: 520px;
    margin: 18px auto 18px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    justify-items: stretch;
  }

  .feature{
    width: 100%;
    justify-content: center;
    padding: 10px 12px;
  }

  .hero__actions{
    gap: 10px;
  }

  .btn--xl{
    width: 100%;
    max-width: 520px;
  }
}

/* celulares menores: pílulas em 1 coluna e título menor */
@media (max-width: 420px){
  .hero__title{
    font-size: clamp(28px, 10vw, 38px);
    line-height: 1.05;
  }

  .hero__features{
    grid-template-columns: 1fr;
  }

  .hero__badge{
    width: fit-content;
    max-width: 100%;
  }
}
/* HERO TITLE - reduzir mais no mobile (mantendo <br>) */
@media (max-width: 520px){
  .hero__title{
    font-size: 28px !important;
    line-height: 1.08 !important;
    letter-spacing: -0.02em !important;
  }
}

/* telas bem pequenas */
@media (max-width: 380px){
  .hero__title{
    font-size: 26px !important;
    line-height: 1.07 !important;
  }
}
@media (max-width: 520px){
  .hero__title{
    font-size: 25px !important;
    line-height: 1.08 !important;
  }
}

@media (max-width: 380px){
  .hero__title{
    font-size: 23px !important;
  }
}
/* =========================
   NAV MOBILE (corrige layout)
   ========================= */
@media (max-width: 920px){

  /* garante que o header fique acima de tudo */
  .header{
    position: sticky; /* ou fixed, se você já usa */
    top: 0;
    z-index: 9999;
  }

  /* o container do header precisa ser referência do dropdown */
  .header__inner{
    position: relative;
  }

  /* lista vira dropdown */
  .nav__list{
    position: absolute;
    top: calc(100% + 10px);
    right: 0;        /* cola no lado direito */
left: auto;      /* não ocupa a largura toda */
width: min(86vw, 360px); /* largura responsiva */
margin: 0;       /* sem centralizar */

    background: rgba(255,255,255,.96);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(220,220,240,.9);
    border-radius: 16px;
    box-shadow: 0 18px 40px rgba(16, 8, 30, .16);
    padding: 10px;
    display: none;           /* fechado por padrão */
  }

  /* quando abrir */
  .nav.is-open .nav__list{
    display: block;
  }

  /* links: alinhados e com área clicável boa */
  .nav__list li{
    list-style: none;
  }

  .nav__link{
    display: block;
    padding: 12px 14px;
    border-radius: 12px;
    text-decoration: none;
    line-height: 1.2;
  }

  .nav__link:hover{
    background: rgba(114,17,198,.08);
  }

  .nav__link.is-active{
    background: rgba(114,17,198,.12);
  }

  /* evita o menu “empurrar” ou ficar torto */
  .nav{
    position: relative;
  }

  /* opcional: dá um respiro no hero pra não ficar colado no header */
  .hero{
    padding-top: 96px; /* ajuste se precisar */
  }
}
/* FIX: tirar espaço grande acima do HERO no mobile */
@media (max-width: 640px){
  .hero{
    padding-top: 18px !important; /* diminui o espaço acima do badge */
  }
}
/* Remover o botão do menu (hambúrguer) em todas as versões */
.nav__toggle{
  display: none !important;
}

/* Garantir que o menu apareça normalmente no mobile */
@media (max-width: 980px){
  .nav__list{
    display: flex !important;
    position: static !important;
    transform: none !important;
    opacity: 1 !important;
    pointer-events: auto !important;
  }
}
/* MOBILE: esconder toda a navegação */
@media (max-width: 980px){
  .nav,
  .nav__list,
  .nav__toggle{
    display: none !important;
  }
}
/* Swipe no carrossel (mobile) */
@media (max-width: 768px){
  .t-viewport{
    touch-action: pan-y; /* permite scroll vertical da página e swipe horizontal no carrossel */
  }
}
