/* =====================================================
   base.css — tokens, fontes, reset, tipografia, botões
   Carregado em todas as páginas.
   ===================================================== */
@font-face{font-family:"Plus Jakarta Sans";src:url("../assets/fonts/PlusJakartaSans-Regular.woff2") format("woff2");font-weight:400;font-style:normal;font-display:swap;unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}
@font-face{font-family:"Plus Jakarta Sans";src:url("../assets/fonts/PlusJakartaSans-Medium.woff2") format("woff2");font-weight:500;font-style:normal;font-display:swap;unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}
@font-face{font-family:"Plus Jakarta Sans";src:url("../assets/fonts/PlusJakartaSans-SemiBold.woff2") format("woff2");font-weight:600;font-style:normal;font-display:swap;unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}
@font-face{font-family:"Plus Jakarta Sans";src:url("../assets/fonts/PlusJakartaSans-Bold.woff2") format("woff2");font-weight:700;font-style:normal;font-display:swap;unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}
@font-face{font-family:"Plus Jakarta Sans";src:url("../assets/fonts/PlusJakartaSans-ExtraBold.woff2") format("woff2");font-weight:800;font-style:normal;font-display:swap;unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}
:root {
  --navy: #0B1B33;
  --navy-2: #132846;
  --teal: #2fc9d4;
  --teal-d: #1aa8b3;
  --teal-s: #E7F8FA;
  --sky: #F2F8FF;
  --ink: #0F172A;
  --muted: #5B6B7C;
  --muted-2: #8A96A6;
  --line: #E3EAF2;
  --ok: #0F9F6E;
  --ok-s: #E7F6EF;
  --white: #fff;
  --font-sans: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: var(--font-sans);
  --shadow-sm: 0 1px 2px rgba(11,27,51,.04), 0 4px 12px rgba(11,27,51,.05);
  --shadow-md: 0 1px 2px rgba(11,27,51,.04), 0 8px 24px rgba(11,27,51,.07), 0 20px 48px rgba(11,27,51,.06);
  --shadow-lg:
    0 1px 0 rgba(255,255,255,.7) inset,
    0 2px 4px rgba(11,27,51,.04),
    0 12px 28px rgba(11,27,51,.08),
    0 36px 72px rgba(11,27,51,.10);
}
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  overflow-x: clip;
}
body {
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--white);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}

/* Titles share Plus Jakarta Sans with body */
h1, h2, h3,
.hero h1,
.section-head h2,
.plan h3,
.chooser-card h3,
.destaque-tile h3,
.sec-card h3,
.partner-card h3,
.step h3,
.faq-item summary,
.review-card strong,
.metric b,
.price-main .value {
  font-family: var(--font-sans);
  letter-spacing: -0.02em;
  font-optical-sizing: auto;
}
.hero h1 {
  letter-spacing: -0.03em;
  line-height: 1.12;
  font-weight: 800;
}
.section-head h2 {
  letter-spacing: -0.022em;
  line-height: 1.15;
  font-weight: 800;
}

a { color: inherit; text-decoration: none; }
img, svg, video { max-width: 100%; }
img { display: block; }
.wrap { width: min(1180px, calc(100% - 48px)); max-width: 100%; margin: 0 auto; padding-inline: max(0px, env(safe-area-inset-left, 0px)) max(0px, env(safe-area-inset-right, 0px)); }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  height: 48px; padding: 0 22px; border-radius: 10px;
  font-weight: 700; font-size: 15px; letter-spacing: -.01em;
  border: 1px solid transparent; cursor: pointer;
}
.btn-primary { background: var(--teal); color: var(--navy); }
.btn-primary:hover { background: #3ed3dd; }
.btn-navy { background: var(--navy); color: #fff; width: 100%; height: 44px; font-size: 14px; }
.btn-on-dark { background: var(--teal); color: var(--navy); width: 100%; height: 44px; font-size: 14px; }

/* ===== Header ===== */

/* ===== Seções ===== */
section { padding: 80px 0; position: relative; }
.section-head { max-width: 640px; margin-bottom: 32px; }
.section-head .label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--teal-d); margin-bottom: 10px;
  padding-left: 10px;
  border-left: 2px solid var(--teal);
  line-height: 1.2;
}
.section-head .label .label-ico {
  width: 14px; height: 14px; flex-shrink: 0; opacity: .9;
  display: inline-block;
}
.section-head h2 {
  margin: 0 0 10px;
  font-size: clamp(26px, 3.2vw, 34px);
  letter-spacing: -.025em; color: var(--navy); line-height: 1.15; font-weight: 800;
}
.section-head p { margin: 0; color: var(--muted); font-size: 16px; }

.section-head-row {
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: 20px; margin-bottom: 12px;
}
.section-head-row .section-head { margin-bottom: 0; max-width: 640px; }

/* ===== Botão WhatsApp (variante global) ===== */
.btn-wa {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  height: 48px; padding: 0 18px; border-radius: 10px;
  font-weight: 700; font-size: 15px; letter-spacing: -.01em;
  border: 1px solid var(--navy); background: transparent; color: var(--navy);
  cursor: pointer;
}
.btn-wa:hover { background: #F4F8FC; }
.btn-wa svg { width: 18px; height: 18px; flex-shrink: 0; }

@media (max-width: 640px) {
  .hide-mobile { display: none !important; }
  .wrap { width: min(1180px, calc(100% - 32px)); }
  .section-head-row { flex-direction: column; gap: 0; }
  section { padding: 56px 0; }
}
