/* ============ VARIÁVEIS DO TEMA ============ */
:root {
  --orange-50:  #fff7ed;
  --orange-100: #ffedd5;
  --orange-200: #fed7aa;
  --orange-400: #fb923c;
  --orange-500: #f97316;
  --orange-600: #ea580c;
  --orange-700: #c2410c;
  --ink-900:    #0b1220;
  --ink-800:    #101a2e;
  --ink-700:    #1e293b;
  --slate-500:  #64748b;
  --slate-400:  #94a3b8;
  --white:      #ffffff;
  --radius:     16px;
  --shadow-sm:  0 2px 8px rgba(11, 18, 32, .06);
  --shadow-md:  0 12px 32px rgba(11, 18, 32, .12);
  --shadow-orange: 0 12px 32px rgba(249, 115, 22, .35);
  --font-body:  'Plus Jakarta Sans', system-ui, sans-serif;
  --font-head:  'Sora', 'Plus Jakarta Sans', system-ui, sans-serif;
}

/* ============ RESET ============ */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
/* FIX: trava o scroll horizontal na base — nada vaza pro lado */
html, body { overflow-x: hidden; }
body {
  font-family: var(--font-body);
  color: var(--ink-900);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
section { scroll-margin-top: 84px; }
.container { width: min(1140px, 92%); margin-inline: auto; }

/* ============ TIPOGRAFIA ============ */
h1, h2, h3 { font-family: var(--font-head); line-height: 1.2; letter-spacing: -.02em; }
h1 { font-size: clamp(2.1rem, 4.5vw, 3.4rem); font-weight: 800; }
h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); font-weight: 700; }
h3 { font-size: 1.15rem; font-weight: 700; }
.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .78rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--orange-600);
  background: var(--orange-100);
  border: 1px solid var(--orange-200);
  padding: 6px 14px; border-radius: 999px; margin-bottom: 16px;
}
.section-head { text-align: center; max-width: 720px; margin: 0 auto 48px; }
.section-head p { color: var(--slate-500); margin-top: 14px; font-size: 1.05rem; }
.destaque { color: var(--orange-600); }

/* ============ BOTÕES ============ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-body); font-weight: 700; font-size: 1rem;
  padding: 15px 28px; border-radius: 12px; border: none; cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.btn-primary {
  background: linear-gradient(135deg, var(--orange-500), var(--orange-600));
  color: var(--white); box-shadow: var(--shadow-orange);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 40px rgba(249, 115, 22, .45); }
.btn-ghost {
  background: transparent; color: var(--white);
  border: 1.5px solid rgba(255,255,255,.35);
}
.btn-ghost:hover { border-color: var(--orange-400); color: var(--orange-400); transform: translateY(-2px); }
.btn-light {
  background: var(--white); color: var(--orange-700);
  box-shadow: var(--shadow-md);
}
.btn-light:hover { transform: translateY(-2px); box-shadow: 0 16px 40px rgba(0,0,0,.25); }

/* ============ HEADER ============ */
.header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  background: rgba(11, 18, 32, .85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,.08);
  transition: background .3s ease;
}
.header.scrolled { background: rgba(11, 18, 32, .97); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.logo { display: flex; align-items: center; gap: 10px; font-family: var(--font-head); font-weight: 800; font-size: 1.35rem; color: var(--white); }
/* FIX: logo em imagem — altura fixa, largura proporcional */
.logo-img { height: 46px; width: auto; display: block; }
.logo-mark {
  width: 38px; height: 38px; border-radius: 10px;
  background: linear-gradient(135deg, var(--orange-500), var(--orange-700));
  display: grid; place-items: center; color: var(--white);
  box-shadow: var(--shadow-orange);
}
.logo span b { color: var(--orange-400); }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { color: rgba(255,255,255,.75); font-size: .95rem; font-weight: 600; transition: color .18s; }
.nav-links a:hover { color: var(--orange-400); }
/* FIX: bloco de conta do menu — escondido no desktop, aparece só no mobile */
.nav-auth { display: none; }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-cta .btn { padding: 11px 20px; font-size: .92rem; }
.menu-toggle { display: none; background: none; border: none; color: var(--white); cursor: pointer; }

/* ============ HERO ============ */
.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(900px 500px at 85% -10%, rgba(249,115,22,.28), transparent 60%),
    radial-gradient(700px 420px at -10% 110%, rgba(249,115,22,.14), transparent 60%),
    linear-gradient(160deg, var(--ink-900), var(--ink-800));
  color: var(--white);
  padding: 160px 0 100px;
}
.hero::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 26px 26px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.6), transparent 70%);
}
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.1fr .9fr; gap: 56px; align-items: center; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(249,115,22,.15); border: 1px solid rgba(249,115,22,.4);
  color: var(--orange-400); font-size: .82rem; font-weight: 700;
  padding: 7px 14px; border-radius: 999px; margin-bottom: 22px;
}
.hero h1 { margin-bottom: 20px; }
/* FIX: remove o nowrap — o span quebra linha junto com o h1 em telas estreitas */
.hero h1 .underline-orange { position: relative; white-space: normal; }
.hero h1 .underline-orange::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 6px; height: 10px;
  background: rgba(249,115,22,.35); border-radius: 4px; z-index: -1;
}
.hero-sub { font-size: 1.12rem; color: rgba(255,255,255,.75); max-width: 540px; margin-bottom: 34px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 30px; }
.micro-proof { display: flex; flex-wrap: wrap; gap: 10px 22px; color: rgba(255,255,255,.6); font-size: .9rem; font-weight: 600; }
.micro-proof li { display: flex; align-items: center; gap: 8px; }
.micro-proof svg { color: var(--orange-400); }
.hero-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 24px; padding: 28px;
  backdrop-filter: blur(6px);
  box-shadow: 0 30px 80px rgba(0,0,0,.4);
  animation: float 5s ease-in-out infinite;
}
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
.hero-card-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 22px; }
.hero-card-top span { font-size: .8rem; color: rgba(255,255,255,.55); font-weight: 600; }
.live-dot { display: inline-flex; align-items: center; gap: 6px; font-size: .78rem; color: #4ade80; font-weight: 700; }
.live-dot i { width: 8px; height: 8px; border-radius: 50%; background: #4ade80; box-shadow: 0 0 0 4px rgba(74,222,128,.2); }
.hero-truck {
  width: 100%; border-radius: 16px; margin-bottom: 22px;
  background: linear-gradient(135deg, rgba(249,115,22,.18), rgba(249,115,22,.05));
  border: 1px solid rgba(249,115,22,.25);
  display: grid; place-items: center; padding: 34px 0;
}
.hero-truck svg { width: 120px; height: 120px; color: var(--orange-400); }
.hero-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.hero-stat {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  border-radius: 14px; padding: 14px 12px; text-align: center;
}
.hero-stat b { display: block; font-family: var(--font-head); font-size: 1.15rem; color: var(--orange-400); }
.hero-stat span { font-size: .74rem; color: rgba(255,255,255,.55); font-weight: 600; }

/* ============ SEÇÃO DA DOR ============ */
.dor { background: var(--ink-900); color: var(--white); padding: 96px 0; }
.dor .section-head p { color: rgba(255,255,255,.65); }
.dor-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 40px; }
.dor-card {
  background: var(--ink-800); border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius); padding: 30px 26px;
  transition: transform .2s ease, border-color .2s ease;
}
.dor-card:hover { transform: translateY(-6px); border-color: rgba(249,115,22,.5); }
.dor-num { font-family: var(--font-head); font-size: .85rem; font-weight: 800; color: var(--orange-500); letter-spacing: .1em; }
.dor-icon { width: 46px; height: 46px; border-radius: 12px; background: rgba(249,115,22,.14); border: 1px solid rgba(249,115,22,.3); display: grid; place-items: center; color: var(--orange-400); margin: 16px 0; }
.dor-card h3 { font-size: 1.05rem; margin-bottom: 10px; }
.dor-card p { color: rgba(255,255,255,.6); font-size: .95rem; }
.dor-closing {
  text-align: center; font-family: var(--font-head); font-size: clamp(1.15rem, 2.4vw, 1.6rem); font-weight: 700;
  padding: 22px; border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(249,115,22,.15), rgba(249,115,22,.05));
  border: 1px solid rgba(249,115,22,.3);
}
.dor-closing b { color: var(--orange-400); }

/* ============ BENEFÍCIOS ============ */
.beneficios { background: var(--orange-50); padding: 96px 0; }
.benef-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.benef-card {
  background: var(--white); border: 1px solid #f1e5d9; border-radius: var(--radius);
  padding: 30px 26px; box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease;
}
.benef-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.benef-icon { width: 48px; height: 48px; border-radius: 12px; background: linear-gradient(135deg, var(--orange-500), var(--orange-700)); color: var(--white); display: grid; place-items: center; margin-bottom: 18px; box-shadow: var(--shadow-orange); }
.benef-card h3 { margin-bottom: 10px; }
.benef-card p { color: var(--slate-500); font-size: .95rem; }
.benef-card .valor { font-family: var(--font-head); font-weight: 800; color: var(--orange-600); }

/* ============ COMO FUNCIONA / MODELO PRÉ-PAGO ============ */
.como-funciona {
  position: relative; overflow: hidden;
  background:
    radial-gradient(700px 400px at 15% 15%, rgba(249,115,22,.12), transparent 60%),
    radial-gradient(600px 350px at 90% 90%, rgba(249,115,22,.10), transparent 60%),
    linear-gradient(160deg, var(--ink-900), var(--ink-800));
  color: var(--white);
  padding: 96px 0;
}
.como-funciona .section-head p { color: rgba(255,255,255,.65); }
.como-funciona .como-closing { color: rgba(255,255,255,.8); }
.step h3 { color: var(--white); }
.step p { color: rgba(255,255,255,.6); }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; position: relative; }
.steps::before {
  content: ""; position: absolute; top: 26px; left: 8%; right: 8%; height: 2px;
  background: linear-gradient(90deg, transparent, var(--orange-400), transparent);
}
.step { text-align: center; position: relative; }
.step-num {
  width: 54px; height: 54px; margin: 0 auto 18px; border-radius: 50%;
  background: linear-gradient(135deg, var(--orange-500), var(--orange-700));
  color: var(--white); font-family: var(--font-head); font-weight: 800; font-size: 1.2rem;
  display: grid; place-items: center; box-shadow: var(--shadow-orange); position: relative; z-index: 1;
}
.step h3 { margin-bottom: 8px; }
.step p { color: var(--slate-500); font-size: .93rem; }
.como-closing { text-align: center; margin-top: 48px; font-size: 1.08rem; color: var(--ink-700); font-weight: 600; }

/* ============ FRETE PARA SÃO PAULO ============ */
.frete-sp {
  position: relative;
  background:
    radial-gradient(600px 300px at 85% 0%, rgba(249,115,22,.16), transparent 60%),
    var(--orange-50);
  border-top: 1px solid var(--orange-200);
  border-bottom: 1px solid var(--orange-200);
  padding: 96px 0;
}
.frete-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.frete-card {
  background: var(--white);
  border: 1px solid var(--orange-200);
  border-radius: var(--radius);
  padding: 30px 26px;
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.frete-card:hover { transform: translateY(-6px); border-color: var(--orange-400); box-shadow: var(--shadow-md); }
.frete-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: linear-gradient(135deg, var(--orange-500), var(--orange-700));
  color: var(--white); display: grid; place-items: center;
  margin-bottom: 18px; box-shadow: var(--shadow-orange);
}
.frete-card h3 { margin-bottom: 10px; }
.frete-card p { color: var(--slate-500); font-size: .95rem; }
.frete-card .valor { font-family: var(--font-head); font-weight: 800; color: var(--orange-600); font-size: 1.5rem; }

/* ============ SIMULAÇÃO ============ */
.simulacao {
  position: relative; overflow: hidden;
  background:
    radial-gradient(700px 400px at 90% 10%, rgba(249,115,22,.25), transparent 60%),
    linear-gradient(160deg, var(--ink-900), var(--ink-800));
  color: var(--white); text-align: center; padding: 96px 0;
}
.simulacao .section-head p { color: rgba(255,255,255,.65); }
.simulacao .btn { margin-top: 8px; }
.simulacao .cta-support { color: rgba(255,255,255,.6); }

/* ============ PREÇOS ============ */
.precos { background: var(--ink-900); color: var(--white); padding: 96px 0; }
.precos .section-head p { color: rgba(255,255,255,.65); }
.table-wrap { overflow-x: auto; border-radius: var(--radius); border: 1px solid rgba(255,255,255,.1); box-shadow: 0 24px 60px rgba(0,0,0,.35); }
table { width: 100%; border-collapse: collapse; min-width: 640px; background: var(--ink-800); }
thead th {
  background: linear-gradient(135deg, var(--orange-600), var(--orange-700));
  color: var(--white); text-align: left; padding: 16px 20px;
  font-size: .82rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
}
tbody td { padding: 16px 20px; border-top: 1px solid rgba(255,255,255,.07); color: rgba(255,255,255,.8); font-size: .96rem; }
tbody tr:nth-child(even) { background: rgba(255,255,255,.03); }
tbody tr:hover { background: rgba(249,115,22,.08); }
td .valor { font-family: var(--font-head); font-weight: 800; color: var(--orange-400); font-size: 1.02rem; white-space: nowrap; }
.preco-note {
  margin-top: 28px; display: flex; align-items: center; gap: 12px; justify-content: center;
  background: rgba(249,115,22,.1); border: 1px solid rgba(249,115,22,.3);
  border-radius: 14px; padding: 16px 22px; color: var(--orange-200); font-weight: 600; text-align: center; flex-wrap: wrap;
}
.preco-note svg { color: var(--orange-400); }

/* ============ CONFORMIDADE ============ */
.conformidade { background: var(--white); padding: 96px 0; }
.conform-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.conform-badge {
  width: 84px; height: 84px; border-radius: 20px; margin-bottom: 22px;
  background: linear-gradient(135deg, var(--orange-500), var(--orange-700));
  color: var(--white); display: grid; place-items: center; box-shadow: var(--shadow-orange);
}
.conform-text p { color: var(--slate-500); margin-top: 16px; font-size: 1.02rem; }
.conform-list { display: grid; gap: 16px; }
.conform-item {
  display: flex; gap: 16px; align-items: flex-start;
  background: var(--orange-50); border: 1px solid var(--orange-100);
  border-radius: 14px; padding: 18px 20px;
}
.conform-item svg { color: var(--orange-600); flex-shrink: 0; margin-top: 2px; }
.conform-item b { display: block; margin-bottom: 4px; }
.conform-item span { color: var(--slate-500); font-size: .93rem; }
.conform-closing { margin-top: 36px; font-family: var(--font-head); font-weight: 700; font-size: 1.2rem; }
.conform-closing b { color: var(--orange-600); }

/* ============ CTA FINAL ============ */
.cta-final {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--orange-600), var(--orange-700));
  color: var(--white); text-align: center; padding: 96px 0;
}
.cta-final::before {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.14) 1px, transparent 1px);
  background-size: 22px 22px;
}
.cta-final .container { position: relative; z-index: 1; }
.cta-final h2 { max-width: 640px; margin: 0 auto 18px; }
.cta-final p { max-width: 540px; margin: 0 auto 34px; color: rgba(255,255,255,.9); font-size: 1.08rem; }
.cta-support { margin-top: 20px; font-size: .95rem; color: rgba(255,255,255,.75); font-weight: 600; }

/* ============ FAQ ============ */
.faq { background: var(--orange-50); padding: 96px 0; }
.faq-list { max-width: 780px; margin: 0 auto; display: grid; gap: 14px; }
details {
  background: var(--white); border: 1px solid #f1e5d9; border-radius: 14px;
  box-shadow: var(--shadow-sm); overflow: hidden;
}
summary {
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  padding: 20px 24px; cursor: pointer; font-weight: 700; font-size: 1.02rem;
  list-style: none;
}
summary::-webkit-details-marker { display: none; }
summary .faq-icon {
  width: 30px; height: 30px; flex-shrink: 0; border-radius: 50%;
  background: var(--orange-100); color: var(--orange-600);
  display: grid; place-items: center; transition: transform .25s ease, background .25s;
}
details[open] summary .faq-icon { transform: rotate(45deg); background: var(--orange-600); color: var(--white); }
details p { padding: 0 24px 20px; color: var(--slate-500); font-size: .97rem; }

/* ============ RODAPÉ ============ */
footer { background: var(--ink-900); color: rgba(255,255,255,.65); padding: 64px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand .logo { margin-bottom: 16px; }
.footer-brand p { font-size: .92rem; max-width: 320px; }
.footer-col h4 { color: var(--white); font-family: var(--font-head); font-size: .9rem; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 16px; }
.footer-col ul { display: grid; gap: 10px; }
.footer-col a { font-size: .93rem; transition: color .18s; }
.footer-col a:hover { color: var(--orange-400); }
.footer-col address { font-style: normal; font-size: .93rem; display: grid; gap: 8px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding-top: 24px; display: flex; flex-wrap: wrap; gap: 10px; justify-content: space-between; font-size: .84rem; color: rgba(255,255,255,.4); }

/* ============ RESPONSIVO ============ */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-card { max-width: 520px; }
  .dor-grid, .benef-grid, .frete-grid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr 1fr; gap: 36px 24px; }
  .steps::before { display: none; }
  .conform-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }

  /* Menu hambúrguer */
  .nav-links {
    position: fixed; top: 72px; right: 0; left: 0;
    flex-direction: column; gap: 8px;
    padding: 20px 6% 48px;               /* respiro extra no fundo — o último botão não morre cortado */
    background: var(--ink-900); border-bottom: 1px solid rgba(255,255,255,.08);
    transform: translateY(-130%); transition: transform .3s ease;
    max-height: calc(100vh - 72px);      /* trava na altura útil da tela */
    overflow-y: auto;                    /* se estourar, rola em vez de cortar */
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links a { padding: 10px 0; width: 100%; border-bottom: 1px solid rgba(255,255,255,.06); }

  /* FIX: esconde o botão Login do header no mobile — fica só logo + hambúrguer */
  .nav-cta .btn { display: none; }

  /* FIX: bloco Criar conta / Login dentro do menu — botões largos, de ponta a ponta */
  .nav-auth {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    width: 100%;
    padding-top: 16px;
    margin-top: 8px;
    border-top: 1px solid rgba(255,255,255,.08);
  }
  .nav-auth .nav-auth-btn {
    width: 100%;
    max-width: 100%;
    padding: 14px 16px;
    font-size: .95rem;
  }

  .menu-toggle { display: block; }
}

@media (max-width: 600px) {
  .dor-grid, .benef-grid, .frete-grid, .steps { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .hero { padding: 130px 0 70px; }
  .hero-actions .btn { width: 100%; }
}

/* ============ FIXES RESPONSIVO ============ */
/* FIX: header compacto em telas pequenas — logo + hambúrguer cabem folgados */
@media (max-width: 480px) {
  .logo { font-size: 1.05rem; gap: 8px; }
  .logo-img { height: 36px; }
  .logo-mark { width: 32px; height: 32px; }
  .logo-mark svg { width: 18px; height: 18px; }
  .nav { height: 64px; }
  .nav-links { top: 64px; max-height: calc(100vh - 64px); }
  .nav-cta { gap: 8px; }
}
/* FIX: stats do hero empilham em telas minúsculas — nada de card espremido */
@media (max-width: 420px) {
  .hero-stats { grid-template-columns: 1fr; }
}


/* ============ WIDGET WHATSAPP FLUTUANTE ============ */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25d366;                 /* verde oficial do WhatsApp */
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, .45);
  transition: transform .2s ease, box-shadow .2s ease;
}
.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 12px 32px rgba(37, 211, 102, .6);
}
/* Em telas pequenas, um pouco menor pra não atrapalhar */
@media (max-width: 480px) {
  .whatsapp-float { bottom: 18px; right: 18px; width: 54px; height: 54px; }
}

/* Faturamento — o destaque que fecha venda */
.calc-faturamento {
    text-align: center; padding: 26px; margin-bottom: 24px;
    background: linear-gradient(135deg, rgba(249,115,22,.16), rgba(249,115,22,.06));
    border: 1px solid rgba(249,115,22,.35); border-radius: 16px;
}
.calc-faturamento .calc-rotulo { font-size: .85rem; color: #94a3b8; font-weight: 600; }
.calc-faturamento .calc-valor { font-size: 2.8rem; font-weight: 800; color: #fff; margin: 4px 0; }
.calc-faturamento .calc-per { font-size: .9rem; color: #94a3b8; }
.calc-pct-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 22px; }
.calc-pct-col { background: #0b1220; border-radius: 14px; padding: 20px; text-align: center; }
.calc-pct-col h3 { font-size: .9rem; margin-bottom: 12px; }
.calc-pct-col.calc-proprio h3 { color: #f87171; }
.calc-pct-col.calc-jpex h3 { color: #4ade80; }
.calc-pct-num { font-size: 2rem; font-weight: 800; line-height: 1.1; }
.calc-pct-col.calc-proprio .calc-pct-num { color: #f87171; }
.calc-pct-col.calc-jpex .calc-pct-num { color: #4ade80; }
.calc-pct-col .calc-pct-label { font-size: .78rem; color: #94a3b8; margin-top: 4px; }
.calc-sobra {
    margin-top: 16px; text-align: center; padding: 18px;
    background: rgba(74,222,128,.1); border: 1px solid rgba(74,222,128,.35);
    border-radius: 12px; font-size: 1.15rem; font-weight: 700; color: #4ade80;
}
.calc-sobra small { display: block; font-weight: 400; font-size: .85rem; margin-top: 6px; color: #cbd5e1; }
@media (max-width: 600px) { .calc-pct-grid { grid-template-columns: 1fr; } }