:root{
  --bg:#0b1420;
  --bg2:#050814;
  --text:#f1f5f9;
  --muted:#94a3b8;
  --border:rgba(255,255,255,.08);

  --cta:#ff7a1a;         /* laranja do botão */
  --ctaHover:#ff8d3a;
  --shadow:0 18px 40px rgba(0,0,0,.45);
}

/* Garante que elementos com hidden NÃO apareçam */
[hidden] {
  display: none !important;
}

*{box-sizing:border-box}
html, body {
    overflow-x: hidden;
}

body{
  margin:0;
  font-family:"Roboto Condensed", system-ui, -apple-system, Segoe UI, sans-serif;
  color:var(--text);
  background: radial-gradient(circle at top left, #18273b 0%, var(--bg2) 55%, #020308 100%);
}
/* =========================
   BACKGROUND GLOBAL FIXO
========================= */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: -1;

    background: linear-gradient(
        to bottom,
        #000000 0%,
        #0b0f14 55%,
        #121820 100%
    );
}

a{color:inherit;text-decoration:none}
.page{max-width:1200px;margin:0 auto;padding:0 18px 60px}

/* HEADER */
.site-header{
  position:sticky;
  top:0;
  z-index:1000;
  background: rgba(5,10,18,.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

.header-wrap{
  max-width:1200px;
  margin:0 auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
}

.brand img{
  height:140px;
  width:auto;
  display:block;
}

.nav{
  display:flex;
  align-items:center;
  gap:18px;
}

.nav-link{
  font-size:18px;
  color:var(--muted);
  padding:6px 8px;
  border-radius:10px;
  transition:.18s;
}
.nav-link:hover{
  color:var(--text);
  background: rgba(255,255,255,.04);
}

.header-actions{
  display:flex;
  align-items:center;
  gap:12px;
}

.btn-cta{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:10px 16px;
  border-radius:12px;
  background: var(--cta);
  color:#fff;
  font-weight:700;
  letter-spacing:.02em;
  box-shadow: var(--shadow);
  transition:.18s;
  white-space:nowrap;
}
.btn-cta:hover{ background: var(--ctaHover); transform: translateY(-1px); }

.btn-cta--full{ width:100%; }

.btn-hamb{
  display:none;
  border:none;
  background: rgba(255,255,255,.06);
  color:#fff;
  border-radius:12px;
  padding:9px 12px;
  cursor:pointer;
  font-size:20px;
  line-height:1;
  border:1px solid var(--border);
}

/* Drawer mobile */
.nav-drawer{
  max-width:1200px;
  margin:0 auto;
  padding:10px 18px 16px;
  display:flex;
  flex-direction:column;
  gap:10px;
  border-top:1px solid var(--border);
  background: rgba(3,8,18,.96);
}

/* FOOTER */
.site-footer{
  border-top:1px solid var(--border);
  background: rgba(3,8,18,.55);
}
.footer-wrap{
  max-width:1200px;
  margin:0 auto;
  padding:18px;
  color:var(--muted);
  font-size:14px;
  text-align:center;
}

/* RESPONSIVO */
@media (max-width: 860px){
  .nav{ display:none; }
  .btn-hamb{ display:inline-flex; }
}
/* =========================
   SEÇÃO INÍCIO (HERO)
========================= */

.home-hero {
    width: 100vw;
    margin-left: calc(50% - 50vw); /* quebra o container */
    background:
        linear-gradient(rgba(0,0,0,0.75), rgba(0,0,0,0.75)),
        url('../img/fundo-preto-laranja.jpg') center/cover no-repeat;
    padding: 10px 18px 60px;
    text-align: center;
}

.home-hero-inner {
    max-width: 900px;
    margin: 0 auto;
}

.hero-logo img {
    max-width: 220px;
    margin-bottom: 40px;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}

.hero-subtitle {
    font-size: 20px;
    color: #cbd5e1;
    line-height: 1.6;
    margin: 0 auto;
}

/* =========================
   BENEFÍCIOS
========================= */

.benefits {
    background: rgba(0,0,0,0.25);
    backdrop-filter: blur(2px);
}

.benefits-inner {
    max-width: 1200px;
    margin: 40px auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

/* CARD */
.benefit-card {
    border-radius: 20px;
    padding: 34px 26px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0,0,0,0.45);
}

.benefit-card.gray {
    background: #2a2f36;
}

.benefit-card.orange {
    background: #ff7a1a;
}

.benefit-card h3 {
    font-size: 22px;
    margin: 18px 0 10px;
    font-weight: 700;
}

.benefit-card p {
    font-size: 15px;
    line-height: 1.6;
    color: #e5e7eb;
}

/* ÍCONE */
.benefit-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #fff;
    color: #000;
    font-size: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

/* RESPONSIVO */
@media (max-width: 900px) {
    .hero-title {
        font-size: 36px;
    }

    .benefits-inner {
        grid-template-columns: 1fr;
    }
}
/* =========================
   QUEM SOMOS
========================= */
.who {
    padding: 100px 18px;
}

.who-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.who-image img {
    width: 100%;
    max-width: 520px;
    display: block;
}

.who-label {
    font-size: 13px;
    letter-spacing: .18em;
    color: #ff7a1a;
    font-weight: 700;
}

.who-title {
    font-size: 38px;
    margin: 14px 0 18px;
}

.who-desc {
    font-size: 17px;
    color: #cbd5e1;
    line-height: 1.7;
    margin-bottom: 28px;
}

/* =========================
   REVOLUÇÃO
========================= */
.revolution {
    text-align: center;
	width: 100vw;
    margin-left: calc(50% - 50vw); /* quebra o container */
    background: #141821;
    padding: 110px 18px;
}

.revolution-inner {
    max-width: 900px;
    margin: 0 auto;
}

.revolution-title {
    font-size: 40px;
    margin-bottom: 18px;
}

.revolution-desc {
    font-size: 18px;
    color: #cbd5e1;
    margin-bottom: 32px;
    line-height: 1.6;
}

/* =========================
   MÉTRICAS FULL WIDTH
========================= */
.metrics-full {
    width: 100vw;
    margin-left: calc(50% - 50vw); /* quebra o container */
    background: #ff7a1a;
    padding: 50px 18px;
}

.metrics-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: center;
}

.metric-item {
    color: #fff;
}

.metric-item strong {
    display: block;
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 6px;
}

.metric-item span {
    font-size: 14px;
    letter-spacing: .04em;
    opacity: .95;
}

/* Responsivo */
@media (max-width: 960px) {
    .metrics-inner {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 520px) {
    .metrics-inner {
        grid-template-columns: 1fr;
    }
}
/* =========================
   O QUE NÓS OFERECEMOS
========================= */
.offer {
    width: 100vw;
    margin-left: calc(50% - 50vw); /* quebra o container */
    background:
        linear-gradient(rgba(0,0,0,0.75), rgba(0,0,0,0.75)),
        url('../img/fundo-preto-laranja.jpg') center/cover no-repeat;
    padding: 60px 18px 60px;
    text-align: center;
}

.offer-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.offer-label {
    display: inline-block;
    font-size: 13px;
    letter-spacing: .18em;
    font-weight: 700;
    color: #ff7a1a;
    margin-bottom: 14px;
}

.offer-title {
    font-size: 38px;
    max-width: 760px;
    margin: 0 auto 60px;
}

.offer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 36px 28px;
}

/* CARD */
.offer-card {
    background: rgba(48,48,48,0.92);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 20px;
    padding: 40px 26px 42px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.45);
}

.offer-card img {
    max-width: 80px;
    margin-bottom: 22px;
}

.offer-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.offer-card p {
    font-size: 15px;
    color: #cbd5e1;
    line-height: 1.6;
}

/* RESPONSIVO */
@media (max-width: 960px) {
    .offer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 560px) {
    .offer-title {
        font-size: 30px;
    }

    .offer-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================
   PORQUE NÓS?
========================= */
.why {
    padding: 60px 18px;
    text-align: center;
}

.why-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.why-label {
    display: inline-block;
    font-size: 13px;
    letter-spacing: .18em;
    font-weight: 700;
    color: #ff7a1a;
    margin-bottom: 14px;
}

.why-title {
    font-size: 38px;
    margin-bottom: 12px;
}

.why-subtitle {
    font-size: 17px;
    color: #cbd5e1;
    margin-bottom: 28px;
}

.why-cta {
    margin-bottom: 60px;
}

/* GRID */
.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

/* CARD */
.why-card {
    border-radius: 22px;
    padding: 38px 26px 42px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.45);
}

.why-card.gray {
    background: #2a2f36;
    color: #fff;
}

.why-card.orange {
    background: #ff7a1a;
    color: #fff;
}

.why-card h3 {
    font-size: 22px;
    margin: 18px 0 10px;
}

.why-card p {
    font-size: 15px;
    line-height: 1.6;
    opacity: .95;
}

/* ÍCONE */
.why-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: 0 auto 16px;
}

.why-icon.orange {
    background: #ff7a1a;
    color: #fff;
}

.why-icon.white {
    background: #fff;
    color: #000;
}

/* RESPONSIVO */
@media (max-width: 1100px) {
    .why-grid {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }
}

@media (max-width: 560px) {
    .why-title {
        font-size: 30px;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================
   BLOCO EXTRA CTA
========================= */
.cta-extra {
    width: 100vw;
    margin-left: calc(50% - 50vw); /* quebra o container */
    background: #141821;
    padding: 50px 18px;
}

.cta-extra-inner {
    max-width: 900px;
    margin: 50px auto;
}

.cta-extra-title {
    font-size: 42px;
    margin-bottom: 16px;
}

.cta-extra-subtitle {
    font-size: 18px;
    color: #cbd5e1;
    line-height: 1.6;
    margin-bottom: 36px;
}

/* RESPONSIVO */
@media (max-width: 560px) {
    .cta-extra-title {
        font-size: 30px;
    }
}

/* =========================
   CASES L4C
========================= */
.cases {
    padding: 60px 18px;
}

.cases-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 70% 30%;
    gap: 60px;
    align-items: center;
}

.cases-label {
    font-size: 13px;
    letter-spacing: .18em;
    font-weight: 700;
    color: #ff7a1a;
}

.cases-title {
    font-size: 40px;
    margin: 16px 0 14px;
}

.cases-subtitle {
    font-size: 17px;
    color: #cbd5e1;
    margin-bottom: 36px;
}

/* SLIDER */
.cases-slider {
    position: relative;
    max-width: 520px;
}

.case-slide {
    display: none;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 22px;
    padding: 32px 30px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.45);
}

.case-slide.active {
    display: block;
}

.case-text {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 26px;
}

.case-person {
    display: flex;
    align-items: center;
    gap: 14px;
}

.case-person img {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
}

.case-person strong {
    display: block;
    font-size: 15px;
}

.case-person span {
    font-size: 13px;
    color: #cbd5e1;
}

/* CONTROLES */
.cases-controls {
    margin-top: 18px;
    display: flex;
    gap: 12px;
}

.cases-controls button {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: none;
    background: #ff7a1a;
    color: #fff;
    font-size: 22px;
    cursor: pointer;
}

/* IMAGEM DIREITA */
.cases-right img {
    width: 100%;
    max-width: 320px;
}

/* RESPONSIVO */
@media (max-width: 960px) {
    .cases-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .cases-slider {
        margin: 0 auto;
    }

    .cases-right {
        display: none;
    }
}

@media (max-width: 560px) {
    .cases-title {
        font-size: 30px;
    }

    .case-text {
        font-size: 18px;
    }
}

/* =========================
   CTA FOOTER (SOBREPOSTO)
========================= */
.footer-cta {
    position: relative;
    margin-top: 20px;
    padding: 0 18px;
}

.footer-cta-inner {
    max-width: 1200px;
    margin: 0 auto -120px;
    background:
        linear-gradient(rgba(0,0,0,0.75), rgba(0,0,0,0.75)),
        url('../img/fundo-quadrados.jpg') center/cover no-repeat;
    border-radius: 26px;
    padding: 60px 60px;
    display: grid;
    grid-template-columns: 75% 25%;
    align-items: center;
    box-shadow: 0 40px 80px rgba(0,0,0,0.6);
    z-index: 2;
}

.footer-cta-label {
    font-size: 13px;
    letter-spacing: .18em;
    font-weight: 700;
    color: #ff7a1a;
}

.footer-cta-title {
    font-size: 34px;
    margin: 14px 0 26px;
}

.footer-cta-image img {
    width: 100%;
    max-width: 220px;
}

/* =========================
   FOOTER PRINCIPAL
========================= */
.site-footer {
    background: #050814;
    padding-top: 140px;
}

.footer-main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 18px 60px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
}

.footer-logo {
    width: 180px;
    margin-bottom: 18px;
}

.footer-desc {
    font-size: 15px;
    color: #cbd5e1;
    line-height: 1.6;
    margin-bottom: 18px;
}

.footer-social a {
    font-size: 20px;
    margin-right: 12px;
}

/* COLUNAS */
.footer-col h4 {
    font-size: 18px;
    margin-bottom: 14px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul a {
    color: #cbd5e1;
    font-size: 15px;
}

/* =========================
   RODAPÉ LEGAL
========================= */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 18px 0;
}

.footer-bottom-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    font-size: 13px;
    color: #94a3b8;
}

.footer-bottom a {
    color: #cbd5e1;
}

.footer-links a {
    margin-left: 16px;
}

/* =========================
   RESPONSIVO
========================= */
@media (max-width: 900px) {
    .footer-cta-inner {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 50px 30px;
    }

    .footer-cta-image {
        display: none;
    }

    .footer-main {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-bottom-inner {
        flex-direction: column;
        text-align: center;
    }

    .footer-links a {
        margin: 0 8px;
    }
}

/* =========================
   PLANOS
========================= */
.plans-hero {
    padding: 90px 18px 60px;
    text-align: center;
}

.plans-hero-inner {
    max-width: 900px;
    margin: 0 auto;
}

.plans-hero h1 {
    font-size: 42px;
    margin-bottom: 12px;
}

.plans-hero p {
    font-size: 18px;
    color: #cbd5e1;
}

.plans-section {
    padding: 60px 18px;
}

.plans-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.plans-inner h2 {
    font-size: 30px;
    margin-bottom: 28px;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
}

/* CARD */
.plan-card {
    background: #0f1b2c;
    border-radius: 22px;
    padding: 34px 28px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 20px 50px rgba(0,0,0,.45);
}

.plan-card h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.plan-desc {
    font-size: 15px;
    color: #cbd5e1;
    line-height: 1.6;
    margin-bottom: 20px;
}

.plan-price {
    font-size: 32px;
    font-weight: 700;
}

.plan-period {
    font-size: 14px;
    color: #94a3b8;
    margin-bottom: 26px;
}

.btn-plan {
    width: 100%;
    text-align: center;
    padding: 14px;
    font-size: 15px;
}

/* EMPTY */
.plans-empty {
    color: #94a3b8;
    font-size: 16px;
}

/* RESPONSIVO */
@media (max-width: 560px) {
    .plans-hero h1 {
        font-size: 30px;
    }
}

/* =========================
   CONFIRMAÇÃO ASSINATURA
========================= */
.confirm {
    padding: 100px 18px;
}

.confirm-inner {
    max-width: 520px;
    margin: 0 auto;
    text-align: center;
}

.confirm-sub {
    color: #cbd5e1;
    margin-bottom: 30px;
}

.confirm-card {
    background: #0f1b2c;
    border-radius: 24px;
    padding: 40px 32px;
    box-shadow: 0 25px 60px rgba(0,0,0,.55);
}

.confirm-card h2 {
    font-size: 26px;
    margin-bottom: 12px;
}

.confirm-desc {
    color: #cbd5e1;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 24px;
}

.confirm-price {
    font-size: 36px;
    font-weight: 700;
}

.confirm-period {
    font-size: 14px;
    color: #94a3b8;
    margin-bottom: 30px;
}

.btn-confirm {
    width: 100%;
    padding: 16px;
    font-size: 16px;
}

.confirm-back {
    display: inline-block;
    margin-top: 18px;
    font-size: 14px;
    color: #94a3b8;
}

/* =========================
   REGISTRO
========================= */
.register {
    padding: 100px 18px;
}

.register-inner {
    max-width: 480px;
    margin: 0 auto;
    text-align: center;
}

.register-sub {
    color: #cbd5e1;
    margin-bottom: 30px;
}

.register-form {
    background: #0f1b2c;
    border-radius: 24px;
    padding: 40px 32px;
    box-shadow: 0 25px 60px rgba(0,0,0,.55);
}

.form-group {
    text-align: left;
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-size: 14px;
    color: #cbd5e1;
    margin-bottom: 6px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(3,8,18,0.9);
    color: #fff;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #ff7a1a;
    box-shadow: 0 0 0 1px rgba(255,122,26,0.4);
}

.btn-register {
    width: 100%;
    margin-top: 14px;
    padding: 16px;
    font-size: 16px;
}

.register-login {
    margin-top: 18px;
    font-size: 14px;
    color: #94a3b8;
}

.register-login a {
    color: #ff7a1a;
}

/* ALERTA */
.alert-error {
    background: rgba(255,0,0,0.12);
    border: 1px solid rgba(255,0,0,0.35);
    padding: 12px;
    border-radius: 12px;
    margin-bottom: 18px;
    font-size: 14px;
}
/* =========================
   PAGAMENTO
========================= */
.payment {
    padding: 100px 18px;
}

.payment-inner {
    max-width: 520px;
    margin: 0 auto;
    text-align: center;
}

.payment-sub {
    color: #cbd5e1;
    margin-bottom: 30px;
}

.payment-card {
    background: #0f1b2c;
    border-radius: 24px;
    padding: 36px 30px;
    box-shadow: 0 25px 60px rgba(0,0,0,.55);
}

.row {
    display: flex;
    justify-content: space-between;
    margin: 14px 0;
    font-size: 16px;
}

.label {
    color: #94a3b8;
}

.value {
    font-weight: 700;
}

.total {
    font-size: 28px;
    font-weight: 700;
    margin: 28px 0;
}

.btn {
    width: 100%;
    display: block;
    text-align: center;
    padding: 14px;
    border-radius: 999px;
    font-weight: 700;
    text-decoration: none;
    margin-top: 14px;
    transition: .2s;
}

.btn:hover {
    filter: brightness(1.1);
}

.btn-pix {
    background: #00d38f;
    color: #000;
}

.btn-boleto {
    background: #1fb6ff;
    color: #000;
}

.btn-voltar {
    background: #1e293b;
    color: #fff;
}
/* =========================
   PIX
========================= */
.pix-qr {
    background: #fff;
    border-radius: 16px;
    padding: 16px;
    margin: 24px auto;
    max-width: 280px;
}

.pix-qr img {
    width: 100%;
    display: block;
}

.pix-code {
    background: #020617;
    border-radius: 12px;
    padding: 14px;
    font-size: 12px;
    word-break: break-all;
    color: #cbd5e1;
    margin-bottom: 16px;
}

.btn-pix {
    background: #00d38f;
    color: #000;
}
