/* ===================================================
   VARIÁVEIS — idênticas ao site.css da SuperRico
   =================================================== */
:root {
  --color-verde-escuro: #0e7c7b;
  --color-verde-medio:  #1caf9c;
  --color-verde-claro:  #d4f4dd;
  --color-azul-escuro:  #0b3c5d;
  --color-preto:        #1d1d16;
  --color-white:        #fff;
  --color-body:         #e4e9f7;
  --color-light:        #e0e0e0;

  /* Paleta interna (aliases para o JS das calculadoras) */
  --sr-teal-900:#0a5f5e; --sr-teal-800:var(--color-verde-escuro);
  --sr-teal-700:#118a87; --sr-teal-500:var(--color-verde-medio);
  --sr-teal-300:#54C3B4; --sr-teal-100:#D9EAEA; --sr-teal-050:#f1f8f7;

  --ink: var(--color-preto); --ink-2:#3a4a5a; --muted:#6b7d7c;
  --line:#dfe9e8; --line-2:#edf3f2; --bg:#f8faf9; --bg-2:#eaf2f0;
  --ok:#2fa86a; --danger:#c81d25;
  --input-bg:#FFFDF3; --input-bd:#EAD9A0; --input-ink:#1d4ed8;

  /* Geometria do site */
  --radius: 14px;           /* cards */
  --radius-btn: 7px;        /* botões padrão do site */
  --radius-pill: 999px;     /* pílula — eyebrow, badges */
  --radius-lg: 21px;        /* modais, caixas grandes */

  /* Sombras copiadas do site.css */
  --shadow-sm: 0 2px 8px rgba(20,44,70,.06);
  --shadow:    rgba(0,0,0,.16) 0px 3px 6px, rgba(0,0,0,.23) 0px 3px 6px;
  --shadow-card: 0 8px 28px -10px rgba(14,124,123,.18);
  --shadow-float: rgba(0,0,0,.3) 0px 19px 38px, rgba(0,0,0,.22) 0px 15px 12px;
  --shadow-hover: 0 12px 28px rgba(0,0,0,.12);

  --ff: "Work Sans", "Segoe UI", system-ui, -apple-system, sans-serif;
}

/* ===================================================
   RESET / BASE — mesmos valores do site
   =================================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; font-size: 14px; }
@media(min-width:768px){ html{ font-size: 16px; } }
body  {
  font-family: var(--ff);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
::selection { background: var(--sr-teal-100); color: var(--sr-teal-900); }
button { font: inherit; cursor: pointer; border: 0; background: transparent; color: inherit; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
svg.ic { width: 20px; height: 20px; flex: none; display: inline-block; vertical-align: middle; }
.wrap { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

/* ===================================================
   HERO
   =================================================== */
.hero { padding: 48px 0 36px; }
.hero .grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 48px; align-items: center; }

/* Eyebrow — pílula badge (igual ao padrão de labels do site) */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 700; letter-spacing: .13em; text-transform: uppercase;
  color: var(--color-verde-escuro);
  background: var(--sr-teal-050);
  border: 1px solid var(--sr-teal-100);
  padding: 6px 14px; border-radius: var(--radius-pill);
  margin-bottom: 18px;
}
.eyebrow .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--color-verde-medio);
  box-shadow: 0 0 0 4px rgba(28,175,156,.18);
}

.hero h1 {
  font-weight: 700;
  font-size: clamp(26px, 4vw, 42px);
  line-height: 1.12; letter-spacing: -.01em;
}
.hero h1 em { font-style: italic; color: var(--color-verde-escuro); }
.hero p.lead { margin-top: 16px; font-size: 16px; color: var(--ink-2); max-width: 520px; }

/* Trust badges */
.hero .trust { display: flex; gap: 24px; margin-top: 26px; flex-wrap: wrap; }
.hero .trust .t b { font-size: 22px; font-weight: 700; color: var(--color-verde-escuro); display: block; }
.hero .trust .t span { font-size: 12px; color: var(--muted); font-weight: 600; }

/* Dispositivo / card visual */
.hero-visual { position: relative; }
.device {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: 20px; position: relative; z-index: 2;
}
.device .topbar { display: flex; align-items: center; gap: 7px; margin-bottom: 14px; }
.device .topbar i { width: 11px; height: 11px; border-radius: 50%; display: block; }
.device .topbar i:nth-child(1){background:#f0b9b9} .device .topbar i:nth-child(2){background:#f3dca6} .device .topbar i:nth-child(3){background:#bfe3c4}
.device .topbar small { margin-left: auto; color: var(--muted); font-size: 10px; font-weight: 700; letter-spacing: .05em; }
.curve-card h4 { font-size: 14px; font-weight: 700; margin-bottom: 4px; }
.curve-card .cap { font-size: 12px; color: var(--muted); margin-bottom: 10px; }
.curve-svg { width: 100%; height: auto; display: block; }
.curve-legend { display: flex; gap: 14px; margin-top: 10px; font-size: 11px; color: var(--ink-2); font-weight: 600; flex-wrap: wrap; }
.curve-legend i { display: inline-block; width: 11px; height: 11px; border-radius: 3px; margin-right: 4px; vertical-align: -1px; }

/* Float cards animados */
.float-card {
  position: absolute;
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); box-shadow: var(--shadow);
  padding: 11px 14px; display: flex; align-items: center; gap: 10px; z-index: 3;
}
.float-card .ico {
  width: 32px; height: 32px; border-radius: 9px;
  background: var(--sr-teal-050); color: var(--color-verde-escuro);
  display: grid; place-items: center;
}
.float-card .ico svg { width: 16px; height: 16px; }
.float-card b   { font-size: 13px; display: block; font-weight: 700; }
.float-card span { font-size: 11px; color: var(--muted); }
.fc-1 { top: -20px; left: -24px; animation: floaty 5s ease-in-out infinite; }
.fc-2 { bottom: -18px; right: -16px; animation: floaty 5s ease-in-out infinite .8s; }
@keyframes floaty { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-9px)} }

@media(max-width:920px){
  .hero .grid { grid-template-columns: 1fr; gap: 44px; }
  .hero-visual { max-width: 460px; margin: 0 auto; }
  .fc-1{left:-10px} .fc-2{right:-6px}
}

/* ===================================================
   CABEÇALHO DE SEÇÃO
   =================================================== */
.sec-head { text-align: center; max-width: 680px; margin: 0 auto 32px; }
.sec-head .eyebrow { margin-bottom: 12px; }
.sec-head h2 {
  font-weight: 700; font-size: clamp(22px, 3vw, 34px);
  line-height: 1.15; letter-spacing: -.01em;
}
.sec-head p { margin-top: 10px; font-size: 15px; color: var(--ink-2); }

/* ===================================================
   GRID DE FERRAMENTAS
   =================================================== */
section.tools { padding: 16px 0 60px; position: relative; scroll-margin-top: 80px; }

.tool-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 18px;
}

/* Card — .card-link do site + accent bar no topo */
.tool-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);           /* 14px — padrão site */
  padding: 20px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
  cursor: pointer;
  text-decoration: none; color: inherit;
}
.tool-card::before {
  content: ""; position: absolute; inset: 0 0 auto 0;
  height: 3px;
  background: var(--tc, var(--color-verde-medio));
  transform: scaleX(0); transform-origin: left;
  transition: transform .28s ease;
}
.tool-card:hover {
  transform: translateY(-6px) scale(1.02);       /* igual .card-link:hover */
  box-shadow: var(--shadow-hover);
  border-color: var(--color-verde-medio);
  color: inherit;
}
.tool-card:hover::before { transform: scaleX(1); }

.tool-card .top { display: flex; align-items: flex-start; justify-content: space-between; gap: 10px; }
.tool-card .emoji {
  width: 46px; height: 46px; border-radius: 13px;
  display: grid; place-items: center; font-size: 24px;
  background: var(--ce, var(--sr-teal-050));
}
.tool-card .tag {
  font-size: 10px; font-weight: 700; letter-spacing: .04em;
  color: var(--color-verde-escuro);
  background: var(--sr-teal-050); border: 1px solid var(--sr-teal-100);
  padding: 4px 10px; border-radius: var(--radius-pill); white-space: nowrap;
}
.tool-card.feat { border: 1.5px solid var(--sr-teal-300); background: linear-gradient(180deg,#fff,var(--sr-teal-050)); }
.tool-card.feat .tag { background: var(--color-verde-escuro); color: #fff; border-color: var(--color-verde-escuro); }
.tool-card h4 { font-size: 15px; font-weight: 700; margin-top: 14px; line-height: 1.3; }
.tool-card h4:hover { color: var(--color-verde-escuro); transition: color .35s ease; }
.tool-card p  { margin-top: 6px; font-size: 13px; color: var(--muted); min-height: 34px; }
.tool-card .open {
  display: inline-flex; align-items: center; gap: 7px;
  margin-top: 12px; font-size: 13px; font-weight: 700;
  color: var(--color-verde-escuro);
}
.tool-card .open svg { width: 15px; height: 15px; transition: transform .2s; }
.tool-card:hover .open svg { transform: translateX(4px); }

/* Cadeado */
.lock-badge {
  position: absolute; top: 14px; right: 14px;
  display: flex; align-items: center; gap: 5px;
  font-size: 10px; font-weight: 700; color: var(--muted);
  background: var(--bg-2); padding: 4px 9px; border-radius: var(--radius-pill);
}
.lock-badge svg { width: 12px; height: 12px; }
body.unlocked .lock-badge { display: none; }
body:not(.unlocked) .tool-card .tag { display: none; }
.tools-locked .tool-grid { filter: blur(5px) grayscale(.25); pointer-events: none; user-select: none; }
.gate-overlay {
  position: absolute; inset: 0;
  display: flex; align-items: flex-start; justify-content: center;
  padding-top: 52px; z-index: 20;
}
body.unlocked .gate-overlay { display: none; }

/* ===================================================
   GATE / FORMULÁRIO DE LEAD
   =================================================== */
.gate {
  width: min(440px, 92vw);
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-lg); box-shadow: var(--shadow-float);
  padding: 30px 28px; position: relative; overflow: hidden;
}
.gate::after {
  content: ""; position: absolute; top: -60px; right: -60px;
  width: 150px; height: 150px; border-radius: 50%;
  background: radial-gradient(circle, var(--sr-teal-100), transparent 70%); opacity: .7;
}
.gate .lock-ico {
  width: 50px; height: 50px; border-radius: var(--radius);
  background: linear-gradient(135deg, var(--color-verde-escuro), var(--color-verde-medio));
  color: #fff; display: grid; place-items: center;
  margin-bottom: 16px; box-shadow: var(--shadow);
}
.gate .lock-ico svg { width: 24px; height: 24px; }
.gate h3 { font-size: 20px; font-weight: 700; letter-spacing: -.01em; }
.gate .sub { margin-top: 8px; font-size: 14px; color: var(--ink-2); }

/* Inputs — padrão Bootstrap + brand do site */
.field { margin-top: 14px; }
.field label { display: block; font-size: 12px; font-weight: 700; color: var(--ink-2); margin-bottom: 5px; }
.field input {
  width: 100%; padding: 11px 13px;
  border: 1.5px solid var(--color-light);
  border-radius: var(--radius-btn); /* 7px — padrão site */
  font: inherit; font-size: 14px; background: #fff; color: var(--ink);
  transition: border-color .2s, box-shadow .2s;
}
.field input:focus {
  outline: none;
  border-color: var(--color-verde-medio);
  box-shadow: 0 0 0 0.2rem rgba(14,124,123,.15);  /* igual site.css */
}
.field input.err { border-color: var(--danger); box-shadow: 0 0 0 0.2rem rgba(200,29,37,.15); }
.field .msg { font-size: 11px; color: var(--danger); margin-top: 4px; min-height: 13px; font-weight: 600; }

.consent {
  display: flex; gap: 9px; align-items: flex-start;
  margin-top: 14px; font-size: 11px; color: var(--muted); line-height: 1.45;
}
.consent input { margin-top: 2px; flex: none; width: 16px; height: 16px; accent-color: var(--color-verde-escuro); }
.consent a { color: var(--color-verde-escuro); font-weight: 600; text-decoration: underline; }

/* Botão submit — .btn do site (fundo verde-escuro, border-radius 7px) */
.gate .submit {
  width: 100%; margin-top: 16px;
  background-color: var(--color-verde-escuro);
  color: #fff; font-weight: 700; font-size: 14px;
  padding: 11px 14px; height: 46px;
  border-radius: var(--radius-btn);         /* 7px */
  display: flex; align-items: center; justify-content: center; gap: 8px;
  box-shadow: var(--shadow);
  transition: background-color .2s, box-shadow .2s, transform .1s;
}
.gate .submit:hover {
  background-color: var(--color-verde-medio);
  border: 1px solid var(--color-verde-escuro);
  box-shadow: rgba(14,30,37,.12) 0px 2px 4px, rgba(14,30,37,.32) 0px 2px 16px;
}
.gate .submit svg { width: 17px; height: 17px; }
.gate .ssl {
  display: flex; align-items: center; justify-content: center;
  gap: 7px; margin-top: 12px;
  font-size: 11px; color: var(--muted); font-weight: 600;
}
.gate .ssl svg { width: 13px; height: 13px; color: var(--ok); }

/* ===================================================
   MODAL
   =================================================== */
.modal-back {
  position: fixed; inset: 0;
  background: rgba(13,32,40,.52); backdrop-filter: blur(4px);
  z-index: 100; display: none; align-items: center; justify-content: center; padding: 20px;
}
.modal-back.show { display: flex; }
.modal {
  width: min(840px, 96vw); max-height: 92vh;
  background: #fff; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-float);
  display: flex; flex-direction: column; overflow: hidden;
  animation: pop .3s cubic-bezier(.2,.9,.3,1.2);
}
@keyframes pop { from{transform:scale(.94) translateY(14px);opacity:0} to{transform:none;opacity:1} }

.modal .mhead {
  display: flex; align-items: center; gap: 14px;
  padding: 18px 24px; border-bottom: 1px solid var(--line);
  background: linear-gradient(135deg, var(--sr-teal-050), #fff);
}
.modal .mhead .ico {
  width: 44px; height: 44px; border-radius: var(--radius);
  display: grid; place-items: center; flex: none; font-size: 22px; color: #fff;
  background: linear-gradient(135deg, var(--color-verde-escuro), var(--color-verde-medio));
}
.modal .mhead h3 { font-size: 17px; font-weight: 700; line-height: 1.2; }
.modal .mhead p  { font-size: 12px; color: var(--muted); margin-top: 2px; }
.modal .mclose {
  margin-left: auto; width: 36px; height: 36px;
  border-radius: var(--radius-btn); background: #fff; border: 1px solid var(--line);
  display: grid; place-items: center; color: var(--ink-2); transition: .2s; flex: none;
}
.modal .mclose:hover { background: var(--bg-2); color: var(--danger); }
.modal .mclose svg { width: 17px; height: 17px; }
.modal .mbody { padding: 20px 24px; overflow-y: auto; }

/* ===================================================
   CAMPOS DOS SIMULADORES
   =================================================== */
.tfield { margin-bottom: 13px; }
.tfield label {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px; font-weight: 700; color: var(--ink-2); margin-bottom: 6px; gap: 10px;
}
.tfield label input {
  width: 110px; padding: 6px 10px;
  border: 1.5px solid var(--input-bd); border-radius: var(--radius-btn);
  font: inherit; font-size: 13px; font-weight: 700;
  text-align: right; background: var(--input-bg); color: var(--input-ink);
}
.tfield label input.wide { width: 126px; }
.tfield input[type=range] {
  width: 100%; height: 5px; -webkit-appearance: none; appearance: none;
  background: linear-gradient(90deg, var(--color-verde-medio), var(--sr-teal-300));
  border-radius: 5px; outline: none;
}
.tfield input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none; width: 18px; height: 18px; border-radius: 50%;
  background: #fff; border: 3px solid var(--color-verde-escuro);
  cursor: pointer; box-shadow: 0 1px 3px rgba(0,0,0,.2);
}
.tfield input[type=range]::-moz-range-thumb {
  width: 18px; height: 18px; border-radius: 50%;
  background: #fff; border: 3px solid var(--color-verde-escuro); cursor: pointer;
}
.tfield .hint { font-size: 11px; color: var(--muted); margin-top: 4px; }
.tfield select {
  width: 100%; padding: 9px 12px;
  border: 1.5px solid var(--input-bd); border-radius: var(--radius-btn);
  font: inherit; font-size: 13px; background: var(--input-bg); color: var(--ink);
}
.tgrouplabel {
  font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
  color: var(--color-verde-escuro); margin: 16px 0 9px;
}
.tgrouplabel:first-child { margin-top: 2px; }
.fields-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 20px; }
.fields-grid .span2 { grid-column: 1/-1; }
@media(max-width:560px){ .fields-grid{ grid-template-columns: 1fr; } }

/* ===================================================
   RESULTADOS
   =================================================== */
.tres { margin-top: 6px; border-top: 1px dashed var(--line); padding-top: 18px; display: none; }
.tres.show { display: block; animation: fade .32s ease; }
@keyframes fade { from{opacity:0;transform:translateY(8px)} to{opacity:1;transform:none} }

.kicker { font-size: 11px; font-weight: 800; letter-spacing: .04em; color: var(--color-verde-escuro); margin-bottom: 5px; }
.tres h3 { font-size: 20px; font-weight: 700; line-height: 1.25; letter-spacing: -.01em; }
.tres h3 .win { color: var(--color-verde-escuro); font-style: italic; }
.tres .sub { font-size: 13px; color: var(--ink-2); margin-top: 9px; line-height: 1.55; }

.tres-stats { display: grid; grid-template-columns: repeat(auto-fit,minmax(128px,1fr)); gap: 11px; margin-top: 16px; }
.tres-stats > div {
  background: var(--sr-teal-050); border: 1px solid var(--sr-teal-100);
  border-radius: var(--radius); padding: 12px;  /* border-radius 14px */
}
.tres-stats .n { font-size: 17px; font-weight: 700; color: var(--color-verde-escuro); }
.tres-stats .l { font-size: 11px; color: var(--muted); font-weight: 700; margin-top: 3px; }

/* Barras comparativas */
.bars { margin-top: 16px; display: flex; flex-direction: column; gap: 9px; }
.bar-row { display: flex; align-items: center; gap: 12px; }
.bar-row .nm { width: 118px; font-size: 12px; font-weight: 700; color: var(--ink-2); flex: none; }
.bar-row .track { flex: 1; height: 24px; border-radius: 7px; background: var(--line-2); overflow: hidden; }
.bar-row .track i { display: block; height: 100%; border-radius: 7px; }
.bar-row .vl { width: 100px; text-align: right; font-size: 12px; font-weight: 700; flex: none; }
.bar-row.best .nm { color: var(--ok); }

/* Tabela */
.data-table { width: 100%; border-collapse: collapse; margin-top: 14px; font-size: 12px; }
.data-table th, .data-table td { padding: 7px 10px; text-align: right; border-bottom: 1px solid var(--line-2); }
.data-table th:first-child, .data-table td:first-child { text-align: left; }
.data-table thead th {
  background: var(--sr-teal-050); color: var(--color-verde-escuro);
  font-weight: 700; font-size: 10px; text-transform: uppercase; letter-spacing: .03em;
}
.data-table tr.total td { font-weight: 700; border-top: 2px solid var(--sr-teal-100); background: var(--sr-teal-050); }

/* Tabela dívidas */
.dividas-table { width: 100%; border-collapse: collapse; font-size: 12px; margin-bottom: 8px; }
.dividas-table th, .dividas-table td { padding: 5px 7px; text-align: center; }
.dividas-table th { font-size: 10px; text-transform: uppercase; color: var(--muted); font-weight: 700; }
.dividas-table input {
  padding: 5px 8px; border: 1.5px solid var(--input-bd);
  background: var(--input-bg); color: var(--input-ink);
  border-radius: var(--radius-btn); font: inherit; font-size: 12px; font-weight: 600; text-align: right;
}
.add-divida {
  width: 100%; margin-top: 3px;
  background: var(--sr-teal-050); border: 1px dashed var(--sr-teal-300);
  color: var(--color-verde-escuro); border-radius: var(--radius-btn);
  padding: 8px; font-weight: 700; font-size: 12px; cursor: pointer;
}

.sim-note {
  margin-top: 14px; font-size: 12px; color: var(--ink-2);
  background: var(--bg-2); border-radius: var(--radius); padding: 11px 13px; line-height: 1.5;
}

/* Botão "Calcular" — .btn do site */
.run-btn {
  margin-top: 6px; width: 100%;
  background-color: var(--color-verde-escuro); color: #fff;
  font-weight: 700; font-size: 14px; padding: 11px 14px; height: 44px;
  border-radius: var(--radius-btn);
  display: flex; align-items: center; justify-content: center; gap: 8px;
  box-shadow: var(--shadow);
  transition: background-color .2s, box-shadow .2s;
}
.run-btn:hover {
  background-color: var(--color-verde-medio);
  border: 1px solid var(--color-verde-escuro);
  box-shadow: rgba(14,30,37,.12) 0px 2px 4px, rgba(14,30,37,.32) 0px 2px 16px;
}
.run-btn svg { width: 16px; height: 16px; }

/* ===================================================
   BOTÕES CTA NOS RESULTADOS
   =================================================== */
.sim-cta { margin-top: 18px; display: flex; gap: 11px; flex-wrap: wrap; }
.sim-cta .btn {
  flex: 1 1 0; min-width: 0;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700; font-family: var(--ff);
  padding: 11px 16px;
  border-radius: var(--radius-btn);       /* 7px — igual site */
  line-height: 1.3; white-space: normal; min-height: 48px;
  gap: 8px; text-align: center; cursor: pointer;
  transition: background-color .2s, box-shadow .2s, transform .15s;
}
.sim-cta .btn svg { width: 16px; height: 16px; flex: none; }
.sim-cta .btn-primary {
  background-color: var(--color-verde-escuro); color: #fff; box-shadow: var(--shadow);
}
.sim-cta .btn-primary:hover {
  background-color: var(--color-verde-medio);
  border: 1px solid var(--color-verde-escuro);
  box-shadow: rgba(14,30,37,.12) 0px 2px 4px, rgba(14,30,37,.32) 0px 2px 16px;
}
.sim-cta .btn-ghost {
  background-color: #fff; color: var(--color-verde-escuro);
  border: 2px solid var(--color-verde-medio);
}
.sim-cta .btn-ghost:hover {
  background-color: var(--color-verde-claro);
  border-color: var(--color-verde-escuro);
}
@media(max-width:520px){
  .sim-cta { flex-direction: column; }
  .sim-cta .btn { width: 100%; min-height: auto; padding: 12px 16px; }
}
.cta-solucao { justify-content: space-between !important; text-align: left !important; gap: 12px; }
.cta-solucao .cta-txt { display: flex; flex-direction: column; gap: 2px; }
.cta-solucao .cta-kicker { font-size: 10px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; opacity: .78; }
.cta-solucao .cta-nome  { font-size: 13px; font-weight: 700; line-height: 1.25; }
.cta-wa svg { width: 17px; height: 17px; }

/* ===================================================
   FAIXA "POR QUÊ" — .bg-verde-sr-degrade do site
   =================================================== */
.why {
  background: var(--color-verde-escuro);
  background: linear-gradient(180deg, rgba(14,124,123,1) 0%, rgba(28,175,156,1) 84%);
  color: #fff; padding: 48px 0;
}
.why .wrap { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.why .w .ico {
  width: 44px; height: 44px; border-radius: var(--radius);
  background: rgba(255,255,255,.14); display: grid; place-items: center; margin-bottom: 12px;
}
.why .w h4 { font-size: 16px; font-weight: 700; color: #fff; }
.why .w p  { font-size: 13px; color: rgba(255,255,255,.82); margin-top: 5px; }
@media(max-width:820px){ .why .wrap{ grid-template-columns: 1fr 1fr; } }
@media(max-width:480px){ .why .wrap{ grid-template-columns: 1fr; } }

/* ===================================================
   FAIXA CTA FINAL — .border-checkout do site
   =================================================== */
.cta-band { padding: 52px 0; }
.cta-inner {
  background: #fff;
  border: 2px solid var(--color-verde-escuro);  /* igual .border-checkout */
  border-radius: var(--radius-lg);              /* 21px */
  padding: 42px; text-align: center; position: relative; overflow: hidden;
}
.cta-inner::before {
  content: ""; position: absolute; top: -70px; left: -70px;
  width: 220px; height: 220px; border-radius: 50%;
  background: radial-gradient(circle, var(--color-verde-claro), transparent 70%); opacity: .5;
}
.cta-inner h2 {
  font-weight: 700; font-size: clamp(22px, 2.8vw, 32px);
  position: relative; letter-spacing: -.01em;
}
.cta-inner p {
  margin-top: 10px; font-size: 15px; color: var(--ink-2);
  max-width: 520px; margin-left: auto; margin-right: auto; position: relative;
}
.cta-inner .actions {
  display: flex; justify-content: center; gap: 14px;
  flex-wrap: wrap; margin-top: 22px; position: relative;
}

/* Botão genérico reutilizável (CTA band) — .btn do site */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--ff); font-weight: 700; font-size: 14px;
  padding: 7px 18px; height: 42px;
  border-radius: var(--radius-btn);
  cursor: pointer;
  transition: background-color .2s, box-shadow .2s;
}
.btn-primary {
  background-color: var(--color-verde-escuro); color: #fff; box-shadow: var(--shadow);
}
.btn-primary:hover {
  background-color: var(--color-verde-medio);
  border: 1px solid var(--color-verde-escuro);
  box-shadow: rgba(14,30,37,.12) 0px 2px 4px, rgba(14,30,37,.32) 0px 2px 16px;
}
.btn-ghost {
  background-color: #fff; color: var(--color-verde-escuro);
  border: 2px solid var(--color-verde-medio);
}
.btn-ghost:hover { background-color: var(--color-verde-claro); border-color: var(--color-verde-escuro); }

/* ===================================================
   TOAST
   =================================================== */
.toast {
  position: fixed; left: 50%; bottom: 26px;
  transform: translateX(-50%) translateY(80px);
  background: var(--ink); color: #fff;
  padding: 12px 20px; border-radius: var(--radius);
  font-size: 14px; font-weight: 600;
  box-shadow: var(--shadow-float);
  z-index: 200; opacity: 0; transition: .4s;
  display: flex; align-items: center; gap: 9px;
}
.toast.show { transform: translateX(-50%) translateY(0); opacity: 1; }
.toast svg { width: 17px; height: 17px; color: var(--color-verde-medio); }
/* ===================================================
   FEEDBACK DO SERVIDOR (mensagem após POST)
   =================================================== */
.server-msg {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 12px 14px;
    border-radius: var(--radius-btn);
    font-size: 13px;
    font-weight: 600;
    line-height: 1.45;
    margin-bottom: 16px;
}
.server-msg svg {
    width: 18px; height: 18px;
    flex: none; margin-top: 1px;
}
.server-msg--ok {
    background: #eaf7f0;
    border: 1px solid #a3d9b8;
    color: #1a6640;
}
.server-msg--ok svg { color: var(--ok); }

.server-msg--erro {
    background: #fdf0f0;
    border: 1px solid #f0b8b8;
    color: #7a1c1c;
}
.server-msg--erro svg { color: var(--danger); }
