/* ===== Concilia Med — Clean redesign per brandbook ===== */
@import url('https://fonts.googleapis.com/css2?family=Sora:wght@300;400;500;600&display=swap');

:root {
  --navy:        #0F2F73;
  --navy-deep:   #0A2057;
  --teal:        #14C7C0;
  --teal-sec:    #10B3AE;
  --gray:        #7E879C;
  --gray-2:      #A8B0C0;
  --ink:         #0F2F73;
  --white:       #FFFFFF;
  --off-white:   #F5F7FA;
  --off-white-2: #EEF1F6;
  --border:      #E8ECF2;
  --soft-teal:   rgba(20,199,192,0.08);
  --soft-teal-2: rgba(20,199,192,0.2);
  --soft-warn:   rgba(220,80,60,0.08);
  --warn:        #C24A2C;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: 'Sora', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--gray);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

h1, h2, h3, h4, h5 {
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: -0.015em;
  margin: 0;
}

.wrap { max-width: 1180px; margin: 0 auto; padding: 0 32px; }
.wrap-narrow { max-width: 720px; margin: 0 auto; padding: 0 32px; }
@media (max-width: 640px) { .wrap, .wrap-narrow { padding: 0 20px; } }

/* ===== Eyebrow / Pill ===== */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--soft-teal);
  border: 1px solid var(--soft-teal-2);
  color: var(--teal-sec);
  font-size: 0.78rem; font-weight: 500;
  padding: 6px 14px; border-radius: 100px;
  letter-spacing: 0;
}
.eyebrow::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--teal); display: inline-block;
}

/* eyebrow as label (caps small) */
.label-caps {
  font-size: 0.7rem; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--gray);
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 28px; border-radius: 8px;
  font-family: 'Sora', sans-serif;
  font-size: 0.95rem; font-weight: 600;
  transition: background .2s, transform .15s, box-shadow .2s;
}
.btn-primary {
  background: var(--teal); color: var(--white);
  box-shadow: 0 4px 16px rgba(20,199,192,0.25);
}
.btn-primary:hover {
  background: var(--teal-sec); transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(20,199,192,0.3);
}
.btn-ghost {
  background: transparent; color: var(--navy);
  border: 1px solid var(--border);
}
.btn-ghost:hover { background: var(--off-white); }
.btn-dark {
  background: var(--navy); color: var(--white);
}
.btn-dark:hover { background: var(--navy-deep); }

.micro {
  font-size: 0.8rem; color: var(--gray);
}

/* ===== NAV ===== */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px; max-width: 1180px; margin: 0 auto; padding: 0 32px;
}
.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo-badge {
  width: 32px; height: 32px; border-radius: 8px; background: var(--navy);
  display: grid; place-items: center; overflow: hidden;
}
.nav-logo-badge img { width: 22px; height: auto; filter: brightness(0) invert(1); }
.nav-logo-word {
  font-family: 'Sora', sans-serif; font-weight: 600; font-size: 1.05rem;
  color: var(--navy); letter-spacing: -0.005em;
}
.nav-logo-word b { color: var(--teal-sec); font-weight: 600; }
.nav-links { display: flex; gap: 32px; }
.nav-links a {
  font-size: 0.9rem; color: var(--gray); font-weight: 500;
  transition: color .15s;
}
.nav-links a:hover { color: var(--teal-sec); }
.nav-cta {
  background: var(--navy); color: var(--white);
  padding: 10px 18px; border-radius: 8px;
  font-size: 0.88rem; font-weight: 500;
}
.nav-cta:hover { background: var(--navy-deep); }
@media (max-width: 880px) {
  .nav-links { display: none; }
  .nav-inner { padding: 0 20px; height: 64px; }
}

/* ===== HERO ===== */
.hero {
  padding: 120px 0 96px;
  text-align: center;
}
.hero-inner {
  max-width: 680px; margin: 0 auto;
}
.hero h1 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--navy);
  margin: 24px 0 0;
  text-wrap: balance;
}
.hero h1 .accent { color: var(--teal-sec); }
.hero-sub {
  margin: 24px auto 0; max-width: 600px;
  font-size: 1.05rem; line-height: 1.7;
  color: var(--gray);
}
.hero-sub b { color: var(--navy); font-weight: 600; }
.hero-cta-row {
  display: flex; gap: 12px; justify-content: center;
  margin-top: 40px; flex-wrap: wrap;
}
.hero-micro {
  margin-top: 20px; font-size: 0.8rem; color: var(--gray);
}

/* Hero visual — single guia card centered */
.hero-visual {
  max-width: 560px; margin: 72px auto 0;
}
.guia {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: 0 1px 4px rgba(15,47,115,0.05), 0 20px 50px -30px rgba(15,47,115,0.15);
  padding: 28px;
  text-align: left;
}
.guia-head {
  display: flex; justify-content: space-between; align-items: center;
  padding-bottom: 20px; margin-bottom: 8px;
  border-bottom: 1px solid var(--border);
}
.guia-head h4 {
  font-size: 0.95rem; font-weight: 600; color: var(--navy);
  margin: 0;
}
.guia-head .num {
  font-size: 0.78rem; color: var(--gray); margin-top: 4px;
  font-weight: 400;
}
.guia-period {
  font-size: 0.78rem; color: var(--gray);
  background: var(--off-white); border: 1px solid var(--border);
  padding: 4px 10px; border-radius: 6px;
}

.guia-summary {
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 14px;
  margin: 20px 0 8px;
}
.guia-summary-cell {
  background: var(--off-white);
  border-radius: 8px;
  padding: 14px 16px;
}
.guia-summary-cell .k {
  font-size: 0.68rem; color: var(--gray); font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
  margin-bottom: 6px;
}
.guia-summary-cell .v {
  font-size: 1.15rem; font-weight: 600; color: var(--navy);
  letter-spacing: -0.01em; line-height: 1.1;
}
.guia-summary-cell.ok .v { color: var(--teal-sec); }
.guia-summary-cell.warn .v { color: var(--warn); }
.guia-summary-cell .sub {
  font-size: 0.72rem; color: var(--gray); margin-top: 4px; font-weight: 400;
}

/* Mobile: ajusta o card de resumo (Hospital São Lucas) */
@media (max-width: 560px) {
  .guia { padding: 20px 16px; }
  .guia-head {
    flex-direction: column; align-items: flex-start; gap: 8px;
    padding-bottom: 16px;
  }
  .guia-summary { gap: 8px; margin: 16px 0 4px; }
  .guia-summary-cell { padding: 12px 10px; }
  .guia-summary-cell .k { font-size: 0.6rem; letter-spacing: 0.06em; }
  .guia-summary-cell .v { font-size: 0.95rem; }
  .guia-summary-cell .sub { font-size: 0.65rem; }
  .guia-row {
    grid-template-columns: 14px 1fr auto;
    gap: 10px; padding: 12px 0; font-size: 0.82rem;
  }
  .guia-row .tag { display: none; }
  .guia-row .val { font-size: 0.88rem; }
  .hero-visual { margin-top: 48px; }
}


.guia-row {
  display: grid; grid-template-columns: 18px 1fr auto auto;
  gap: 14px; align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.88rem;
}
.guia-row:last-child { border-bottom: none; }
.guia-row .dot-status {
  width: 8px; height: 8px; border-radius: 50%; background: var(--teal); margin-left: 4px;
}
.guia-row .dot-status.pay { background: var(--teal); }
.guia-row .dot-status.glo { background: var(--warn); }
.guia-row .dot-status.pen { background: #E0A93B; }
.guia-row .name {
  font-weight: 500; color: var(--navy); line-height: 1.3;
}
.guia-row .tuss {
  font-size: 0.72rem; color: var(--gray); margin-top: 2px; font-weight: 400;
}
.guia-row .tag {
  font-size: 0.68rem; font-weight: 500;
  padding: 4px 10px; border-radius: 6px;
  letter-spacing: 0.04em;
}
.guia-row .tag.pay { background: var(--soft-teal); color: var(--teal-sec); }
.guia-row .tag.glo { background: var(--soft-warn); color: var(--warn); }
.guia-row .tag.pen { background: rgba(224,169,59,0.1); color: #B4831A; }
.guia-row .val {
  font-weight: 600; color: var(--navy); text-align: right;
  min-width: 70px;
}

.guia-alert {
  margin-top: 16px;
  background: var(--soft-warn);
  border: 1px solid rgba(220,80,60,0.18);
  border-radius: 8px;
  padding: 14px 16px;
  display: flex; gap: 12px; align-items: flex-start;
  font-size: 0.84rem; color: var(--navy);
  line-height: 1.5;
}
.guia-alert b { color: var(--warn); font-weight: 600; }
.guia-alert .alert-icon {
  width: 18px; height: 18px; flex-shrink: 0; color: var(--warn);
}

/* ===== Section ===== */
.section { padding: 120px 0; }
.section-alt { background: var(--off-white); }
@media (max-width: 768px) { .section { padding: 80px 0; } }

.section-head {
  text-align: center;
  max-width: 680px; margin: 0 auto 64px;
}
.section-head h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--navy);
  margin: 20px 0 0;
  text-wrap: balance;
}
.section-head h2 .accent { color: var(--teal-sec); }
.section-head p {
  margin: 20px auto 0; max-width: 580px;
  font-size: 1rem; color: var(--gray); line-height: 1.7;
}

/* ===== Big numbers strip ===== */
.numbers-strip {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 48px;
}
@media (max-width: 900px) { .numbers-strip { grid-template-columns: repeat(2, 1fr); gap: 56px; } }
@media (max-width: 480px) { .numbers-strip { grid-template-columns: 1fr; gap: 40px; } }
.number-cell {
  text-align: center;
}
.number-cell .num {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 300;
  color: var(--navy);
  line-height: 1;
  letter-spacing: -0.04em;
}
.number-cell .num .accent { color: var(--teal-sec); font-weight: 400; }
.number-cell .lbl {
  margin-top: 10px;
  font-size: 0.85rem; color: var(--gray);
  line-height: 1.5;
  max-width: 220px; margin-left: auto; margin-right: auto;
}

/* ===== Body editorial text ===== */
.editorial p {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--gray);
  margin: 0 0 24px;
  max-width: 600px;
  margin-left: auto; margin-right: auto;
}
.editorial p:last-child { margin-bottom: 0; }
.editorial p b { color: var(--navy); font-weight: 600; }
.editorial p .accent { color: var(--teal-sec); font-weight: 600; }

/* ===== Pain cards ===== */
.pain-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
@media (max-width: 900px) { .pain-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .pain-grid { grid-template-columns: 1fr; } }
.pain-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px 32px;
  box-shadow: 0 1px 4px rgba(15,47,115,0.05);
}
.pain-num {
  font-size: 0.78rem; color: var(--teal-sec);
  font-weight: 500; letter-spacing: 0.04em;
  margin-bottom: 12px;
}
.pain-card p {
  font-size: 0.95rem; color: var(--gray);
  line-height: 1.7; margin: 0;
}
.pain-card p b { color: var(--navy); font-weight: 600; }

.pain-cta {
  text-align: center; margin-top: 64px;
}
.pain-cta h3 {
  font-size: clamp(1.4rem, 2vw, 1.8rem);
  font-weight: 600; color: var(--navy);
  max-width: 600px; margin: 0 auto 24px;
  line-height: 1.3; text-wrap: balance;
}
.pain-cta h3 .accent { color: var(--teal-sec); }

/* ===== Motors ===== */
.motors {
  display: grid; grid-template-columns: 1fr 1fr; gap: 32px;
}
@media (max-width: 900px) { .motors { grid-template-columns: 1fr; } }
.motor {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 1px 4px rgba(15,47,115,0.05);
}
.motor-tag {
  display: inline-flex;
  font-size: 0.7rem; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--teal-sec);
}
.motor h3 {
  font-size: 1.5rem; font-weight: 600; color: var(--navy);
  margin: 14px 0 14px; line-height: 1.2;
  letter-spacing: -0.015em;
}
.motor-desc {
  color: var(--gray); font-size: 0.95rem; line-height: 1.7;
  margin: 0;
}
.motor-steps {
  margin-top: 28px; padding-top: 28px;
  border-top: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 16px;
}
.motor-step {
  display: flex; align-items: center; gap: 14px;
  font-size: 0.9rem;
}
.motor-step .n {
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--soft-teal); color: var(--teal-sec);
  display: grid; place-items: center;
  font-size: 0.78rem; font-weight: 600; flex-shrink: 0;
}
.motor-step .txt { color: var(--navy); flex: 1; }
.motor-step .txt b { font-weight: 600; }
.motor-step .meta { font-size: 0.78rem; color: var(--gray); font-weight: 400; }

.motor-stat {
  margin-top: 28px; padding-top: 28px;
  border-top: 1px solid var(--border);
}
.motor-stat .big {
  font-size: clamp(2.4rem, 5vw, 3.2rem);
  font-weight: 300; color: var(--navy);
  line-height: 1; letter-spacing: -0.04em;
}
.motor-stat .big .accent { color: var(--teal-sec); font-weight: 400; }
.motor-stat .lbl {
  margin-top: 8px;
  font-size: 0.85rem; color: var(--gray); line-height: 1.5;
}

.motors-tagline {
  text-align: center; margin-top: 56px;
  font-size: 1.1rem; color: var(--navy);
  max-width: 620px; margin-left: auto; margin-right: auto;
  font-weight: 500; line-height: 1.5;
  text-wrap: balance;
}
.motors-tagline .accent { color: var(--teal-sec); }
.motors-cta { text-align: center; margin-top: 32px; }

/* ===== Calculator ===== */
.calc-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: 0 1px 4px rgba(15,47,115,0.05);
  padding: 48px;
  max-width: 820px; margin: 0 auto;
}
@media (max-width: 640px) { .calc-card { padding: 32px 24px; } }
.calc-row {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: 12px;
}
.calc-row .lbl { font-size: 0.85rem; color: var(--gray); font-weight: 500; }
.calc-row .v {
  font-size: 1.6rem; font-weight: 600; color: var(--navy);
  letter-spacing: -0.02em;
}
.slider {
  -webkit-appearance: none; appearance: none;
  width: 100%; height: 4px;
  background: var(--border); border-radius: 999px;
  outline: none;
  margin-top: 8px;
}
.slider::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--teal);
  border: 3px solid var(--white);
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(20,199,192,0.4);
}
.slider::-moz-range-thumb {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--teal);
  border: 3px solid var(--white);
  cursor: pointer;
}
.slider-labels {
  display: flex; justify-content: space-between;
  margin-top: 10px;
  font-size: 0.75rem; color: var(--gray); font-weight: 400;
}

.calc-result {
  margin-top: 36px; padding-top: 32px;
  border-top: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 12px;
}
.calc-result-row {
  display: flex; justify-content: space-between; align-items: baseline;
  font-size: 0.95rem;
}
.calc-result-row .k { color: var(--gray); }
.calc-result-row .v { color: var(--navy); font-weight: 500; font-variant-numeric: tabular-nums; }
.calc-result-row.hl {
  margin-top: 12px; padding-top: 20px;
  border-top: 1px solid var(--border);
}
.calc-result-row.hl .k { color: var(--navy); font-weight: 500; }
.calc-result-row.hl .v {
  color: var(--teal-sec); font-weight: 600; font-size: 1.4rem;
  letter-spacing: -0.01em;
}
.calc-result-row.gain {
  margin-top: 4px;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.calc-result-row.gain .k {
  color: var(--navy); font-weight: 500;
  display: inline-flex; align-items: center; gap: 8px; flex-wrap: wrap;
}
.calc-result-row.gain .v {
  color: var(--teal-sec); font-weight: 600;
  font-variant-numeric: tabular-nums;
}
.gain-pct {
  display: inline-flex; align-items: center;
  background: color-mix(in oklab, var(--teal-sec) 14%, transparent);
  color: var(--teal-sec);
  font-weight: 600; font-size: .78rem;
  padding: 2px 8px; border-radius: 999px;
  line-height: 1.4;
  letter-spacing: .01em;
}
.calc-note {
  margin-top: 24px; font-size: 0.8rem; color: var(--gray);
  line-height: 1.6;
}
.calc-note b { color: var(--navy); font-weight: 500; }

/* ===== Process steps ===== */
.process {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 32px;
  margin-top: 16px;
}
@media (max-width: 1100px) { .process { grid-template-columns: repeat(3, 1fr); gap: 40px; } }
@media (max-width: 720px) { .process { grid-template-columns: repeat(2, 1fr); gap: 36px; } }
@media (max-width: 480px) { .process { grid-template-columns: 1fr; gap: 32px; } }
.step {
  position: relative;
  padding-top: 28px;
}
.step::before {
  content: ""; position: absolute; top: 0; left: 0; width: 32px; height: 2px;
  background: var(--teal);
}
.step .n {
  font-size: 0.7rem; color: var(--teal-sec); font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.12em;
  margin-bottom: 12px;
}
.step h4 {
  font-size: 1.05rem; font-weight: 600; color: var(--navy);
  margin: 0 0 8px; line-height: 1.3;
}
.step p { margin: 0; font-size: 0.9rem; color: var(--gray); line-height: 1.6; }

/* ===== Benefits — clean list ===== */
.benefits-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0;
  border-top: 1px solid var(--border);
}
@media (max-width: 900px) { .benefits-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .benefits-grid { grid-template-columns: 1fr; } }
.benefit {
  padding: 32px 32px 32px 0;
  border-bottom: 1px solid var(--border);
  border-right: 1px solid var(--border);
}
.benefit:nth-child(3n) { border-right: none; padding-right: 0; }
.benefit:nth-child(3n+2), .benefit:nth-child(3n+3) { padding-left: 32px; }
@media (max-width: 900px) {
  .benefit { padding: 28px; border-right: 1px solid var(--border) !important; padding-right: 28px !important; padding-left: 28px !important; }
  .benefit:nth-child(2n) { border-right: none !important; padding-right: 0 !important; }
  .benefit:nth-child(2n+1) { padding-left: 0 !important; }
}
@media (max-width: 640px) {
  .benefit { padding: 24px 0 !important; border-right: none !important; }
}
.benefit-num {
  font-size: 0.7rem; color: var(--teal-sec); font-weight: 500;
  letter-spacing: 0.08em; margin-bottom: 12px;
}
.benefit h4 {
  font-size: 1.05rem; font-weight: 600; color: var(--navy);
  margin: 0 0 10px; line-height: 1.3;
}
.benefit p { margin: 0; font-size: 0.92rem; color: var(--gray); line-height: 1.65; }

/* ===== Reviews ===== */
.reviews {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
@media (max-width: 900px) { .reviews { grid-template-columns: 1fr; } }
.review {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 1px 4px rgba(15,47,115,0.05);
}
.review p {
  font-size: 0.95rem; line-height: 1.65; color: var(--navy);
  margin: 0 0 24px;
}
.review-author {
  display: flex; align-items: center; gap: 12px;
  padding-top: 20px; border-top: 1px solid var(--border);
}
.review-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--soft-teal); color: var(--teal-sec);
  display: grid; place-items: center;
  font-weight: 600; font-size: 0.78rem;
  flex-shrink: 0;
}
.review-author .name { font-size: 0.88rem; color: var(--navy); font-weight: 600; }
.review-author .role { font-size: 0.78rem; color: var(--gray); margin-top: 2px; }
.review-gain {
  margin-left: auto;
  background: var(--soft-teal); color: var(--teal-sec);
  padding: 4px 10px; border-radius: 6px;
  font-size: 0.78rem; font-weight: 500;
}

/* ===== Pricing ===== */
.pricing {
  display: grid; grid-template-columns: 1fr 1fr; gap: 32px;
  align-items: stretch;
}
@media (max-width: 900px) { .pricing { grid-template-columns: 1fr; } }
.pricing-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 48px;
  box-shadow: 0 1px 4px rgba(15,47,115,0.05);
}
@media (max-width: 640px) { .pricing-card { padding: 32px; } }
.pricing-card .label-caps { margin-bottom: 12px; display: inline-block; }
.pricing-card .price {
  font-size: clamp(3.5rem, 8vw, 5rem);
  font-weight: 300; color: var(--teal-sec);
  line-height: 1; letter-spacing: -0.05em;
  margin: 8px 0 12px;
}
.pricing-card .price-sub {
  font-size: 0.95rem; color: var(--gray); line-height: 1.6;
  max-width: 360px;
}
.pricing-list {
  list-style: none; padding: 32px 0 0; margin: 32px 0 0;
  border-top: 1px solid var(--border);
}
.pricing-list li {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 10px 0; font-size: 0.92rem;
  color: var(--navy); line-height: 1.5;
}
.pricing-list li::before {
  content: ""; width: 14px; height: 14px; flex-shrink: 0; margin-top: 4px;
  border-radius: 50%; background: var(--teal-sec);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
  background-size: 9px; background-repeat: no-repeat; background-position: center;
}

.pricing-aside {
  background: var(--off-white);
  border-radius: 12px;
  padding: 48px;
  display: flex; flex-direction: column; justify-content: space-between;
}
@media (max-width: 640px) { .pricing-aside { padding: 32px; } }
.pricing-aside h3 {
  font-size: 1.4rem; font-weight: 600; color: var(--navy);
  line-height: 1.3; margin: 16px 0 0;
}
.pricing-aside h3 .accent { color: var(--teal-sec); }
.example {
  margin-top: 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 24px;
  display: flex; flex-direction: column; gap: 10px;
  font-size: 0.92rem;
}
.example .row { display: flex; justify-content: space-between; }
.example .row .k { color: var(--gray); }
.example .row .v { color: var(--navy); font-weight: 500; font-variant-numeric: tabular-nums; }
.example .total { margin-top: 6px; padding-top: 14px; border-top: 1px solid var(--border); }
.example .total .v { color: var(--teal-sec); font-weight: 600; font-size: 1.05rem; }

/* ===== Guarantee ===== */
.guarantee {
  margin-top: 64px;
  background: var(--white); border: 1px solid var(--border);
  border-radius: 12px; padding: 40px;
  display: flex; gap: 32px; align-items: center;
  box-shadow: 0 1px 4px rgba(15,47,115,0.05);
}
@media (max-width: 640px) { .guarantee { flex-direction: column; text-align: center; padding: 32px; gap: 24px; } }
.guarantee-num {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 300; color: var(--teal-sec);
  line-height: 1; letter-spacing: -0.04em;
  flex-shrink: 0;
  min-width: 100px;
}
.guarantee h3 {
  font-size: 1.2rem; font-weight: 600; color: var(--navy);
  margin: 0 0 6px; line-height: 1.3;
}
.guarantee p { margin: 0; font-size: 0.92rem; color: var(--gray); line-height: 1.6; max-width: 540px; }

/* ===== Urgency ===== */
.urgency-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
}
@media (max-width: 768px) { .urgency-grid { grid-template-columns: 1fr; } }
.urgency-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 1px 4px rgba(15,47,115,0.05);
}
.urgency-card .label-caps { margin-bottom: 14px; color: var(--teal-sec); }
.urgency-card h4 {
  font-size: 1.15rem; font-weight: 600; color: var(--navy);
  margin: 0 0 10px; line-height: 1.4;
}
.urgency-card h4 .accent { color: var(--teal-sec); }
.urgency-card p { margin: 0; font-size: 0.92rem; color: var(--gray); line-height: 1.65; }
.urgency-note {
  text-align: center; margin-top: 40px;
  font-size: 0.95rem; color: var(--gray);
}

/* ===== Accordion ===== */
.accordion {
  max-width: 820px; margin: 0 auto;
  border-top: 1px solid var(--border);
}
.accordion details {
  border-bottom: 1px solid var(--border);
}
.accordion summary {
  list-style: none; cursor: pointer;
  padding: 24px 0;
  display: flex; justify-content: space-between; align-items: center;
  gap: 24px;
  font-size: 1.02rem; font-weight: 500; color: var(--navy);
  line-height: 1.4;
}
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary::after {
  content: "+";
  font-size: 1.5rem; font-weight: 300; color: var(--teal-sec);
  flex-shrink: 0;
}
.accordion details[open] summary::after { content: "−"; }
.accordion details p {
  margin: 0 0 28px; font-size: 0.95rem; color: var(--gray); line-height: 1.7;
  max-width: 680px;
}
.accordion details p b { color: var(--navy); font-weight: 600; }

/* ===== Final CTA ===== */
.final {
  padding: 140px 0;
  text-align: center;
  background: var(--off-white);
}
.final h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 600; line-height: 1.15;
  color: var(--navy); letter-spacing: -0.025em;
  margin: 16px auto 0; max-width: 720px;
  text-wrap: balance;
}
.final h2 .accent { color: var(--teal-sec); }
.final-sub {
  margin: 24px auto 0; max-width: 580px;
  font-size: 1rem; color: var(--gray); line-height: 1.7;
}
.final-cta-row { margin-top: 36px; display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.final-micro { margin-top: 20px; font-size: 0.8rem; color: var(--gray); }

/* ===== Footer ===== */
footer {
  background: var(--navy);
  color: rgba(255,255,255,0.7);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
@media (max-width: 768px) { .footer-grid { grid-template-columns: 1fr; gap: 32px; } }
.footer-brand-row { display: flex; align-items: center; gap: 12px; }
.footer-brand-row .nav-logo-badge { background: var(--white); }
.footer-brand-row .nav-logo-badge img { filter: none; }
.footer-brand-row .nav-logo-word { color: var(--white); }
.footer-brand-row .nav-logo-word b { color: var(--teal); }
.footer-brand p {
  margin-top: 14px; font-size: 0.88rem; line-height: 1.65;
  max-width: 340px; color: rgba(255,255,255,0.65);
}
.footer-col h5 {
  font-size: 0.7rem; color: var(--teal); letter-spacing: 0.12em;
  text-transform: uppercase; font-weight: 500;
  margin: 0 0 14px;
}
.footer-col a {
  display: block; padding: 5px 0;
  font-size: 0.88rem; color: rgba(255,255,255,0.7);
}
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.78rem; color: rgba(255,255,255,0.5);
}
@media (max-width: 640px) {
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}

/* utility */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }

/* mobile button width */
@media (max-width: 640px) {
  .hero-cta-row .btn, .final-cta-row .btn { width: 100%; }
}

/* fade-in animation (with safe fallback: visible by default) */
.fade-up { transition: opacity .7s ease, transform .7s ease; }
.js-anim .fade-up { opacity: 0; transform: translateY(16px); }
.js-anim .fade-up.in { opacity: 1; transform: translateY(0); }

/* ===== Lead capture modal ===== */
.modal-backdrop {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(15,47,115,0.45);
  backdrop-filter: blur(8px);
  display: grid; place-items: center;
  padding: 24px;
  opacity: 0; pointer-events: none;
  transition: opacity .2s ease;
}
.modal-backdrop.open { opacity: 1; pointer-events: auto; }
.modal {
  background: var(--white);
  border-radius: 16px;
  width: 100%; max-width: 480px;
  padding: 40px;
  position: relative;
  box-shadow: 0 30px 80px -20px rgba(15,47,115,0.35);
  transform: translateY(20px) scale(0.98);
  transition: transform .25s ease;
  max-height: 90vh; overflow-y: auto;
}
.modal-backdrop.open .modal { transform: translateY(0) scale(1); }
@media (max-width: 480px) { .modal { padding: 32px 24px; } }

.modal-close {
  position: absolute; top: 16px; right: 16px;
  width: 36px; height: 36px; border-radius: 8px;
  display: grid; place-items: center;
  color: var(--gray);
  background: var(--off-white);
  transition: background .15s, color .15s;
}
.modal-close:hover { background: var(--off-white-2); color: var(--navy); }

.modal h3 {
  font-size: 1.5rem; font-weight: 600; color: var(--navy);
  margin: 12px 0 12px; line-height: 1.25; letter-spacing: -0.015em;
  text-wrap: balance;
}
.modal-sub {
  font-size: 0.95rem; color: var(--gray); line-height: 1.65;
  margin: 0 0 28px;
}
.modal-sub b { color: var(--navy); font-weight: 600; }

#leadForm { display: flex; flex-direction: column; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field span {
  font-size: 0.78rem; font-weight: 500; color: var(--gray);
  letter-spacing: 0.02em;
}
.field input, .field select {
  font-family: 'Sora', sans-serif;
  font-size: 0.95rem; font-weight: 400;
  color: var(--navy);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 14px;
  outline: none;
  transition: border-color .15s, box-shadow .15s;
}
.field input::placeholder { color: var(--gray-2); }
.field input:focus, .field select:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(20,199,192,0.15);
}
.field select { cursor: pointer; appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%237E879C' stroke-width='2' stroke-linecap='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 12px center; background-size: 16px;
  padding-right: 40px;
}
.modal-submit { margin-top: 8px; width: 100%; }
.modal-micro {
  margin: 8px 0 0; font-size: 0.78rem; color: var(--gray); text-align: center;
}

.success-icon {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--soft-teal); color: var(--teal-sec);
  display: grid; place-items: center;
  margin: 0 0 12px;
}
.success-info {
  list-style: none; padding: 16px; margin: 18px 0 22px;
  background: var(--off-white);
  border: 1px solid var(--off-white-2);
  border-radius: 12px;
  display: flex; flex-direction: column; gap: 10px;
}
.perk-row {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 0.9rem; line-height: 1.35;
}
.perk-ico {
  flex: 0 0 28px; width: 28px; height: 28px;
  display: grid; place-items: center;
  background: #fff; border-radius: 8px;
  font-size: 0.95rem;
}
.perk-txt { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.perk-txt b { color: var(--navy); font-weight: 600; }
.perk-txt small { color: var(--gray); font-size: 0.78rem; }

/* =========================================================
   Mobile sticky CTA + responsividade reforçada
   ========================================================= */
.mobile-sticky-cta {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 90;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, #0F2F73 0%, #14C7C0 120%);
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -.01em;
  text-decoration: none;
  box-shadow: 0 12px 30px -8px rgba(15,47,115,.45), 0 4px 12px rgba(0,0,0,.18);
  transform: translateY(0);
  transition: transform .35s ease, opacity .25s ease;
  animation: stickyPulse 2.6s ease-in-out infinite;
}
.mobile-sticky-cta .arrow {
  width: 32px; height: 32px;
  border-radius: 999px;
  background: rgba(255,255,255,.18);
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 16px;
}
.mobile-sticky-cta.hide {
  transform: translateY(160%);
  opacity: 0;
  pointer-events: none;
}
@keyframes stickyPulse {
  0%, 100% { box-shadow: 0 12px 30px -8px rgba(15,47,115,.45), 0 4px 12px rgba(0,0,0,.18), 0 0 0 0 rgba(20,199,192,.55); }
  50%      { box-shadow: 0 12px 30px -8px rgba(15,47,115,.45), 0 4px 12px rgba(0,0,0,.18), 0 0 0 10px rgba(20,199,192,0); }
}
@media (max-width: 820px) {
  .mobile-sticky-cta { display: flex; }
  body { padding-bottom: 84px; }
}

/* ---- Responsividade fina ---- */
@media (max-width: 820px) {
  .hero h1 { font-size: clamp(1.9rem, 7.5vw, 2.6rem); line-height: 1.12; }
  .hero-sub { font-size: 1rem; }
  .hero-cta-row { flex-direction: column; align-items: stretch; gap: 10px; }
  .hero-cta-row .btn { width: 100%; justify-content: center; text-align: center; }
  .nav-links { display: none; }
  .nav-cta { padding: 10px 16px; font-size: 13px; }
  section .wrap, .wrap { padding-left: 18px; padding-right: 18px; }
  h2 { font-size: clamp(1.55rem, 5.8vw, 2.1rem); line-height: 1.15; }
  .calc-card { padding: 18px; }
  .calc-result-row { font-size: .92rem; }
  .calc-result-row.hl { font-size: 1.05rem; }
  .modal { width: calc(100% - 24px); max-width: 100%; margin: 0 auto; padding: 22px; max-height: 92vh; overflow-y: auto; }
  .modal h3 { font-size: 1.25rem; }
  .field input, .field select { font-size: 16px; } /* evita zoom no iOS */
  .btn { font-size: 15px; }
  .pain-card, .motor, .review, .pricing-card { padding: 20px; }
  .footer-cols { grid-template-columns: 1fr 1fr; gap: 24px; }
}

@media (max-width: 480px) {
  .footer-cols { grid-template-columns: 1fr; }
  .calc-row { flex-wrap: wrap; }
  .mobile-sticky-cta { font-size: 14px; padding: 12px 16px; }
  .mobile-sticky-cta .arrow { width: 28px; height: 28px; }
}

/* tap targets confortáveis */
@media (hover: none) {
  .btn, .nav-cta, a.btn { min-height: 48px; }
}

.nav-logo-img{height:56px;width:auto;display:block}
@media (max-width:880px){
  .nav-inner{height:76px}
  .nav-logo-img{height:60px}
}
@media (max-width:480px){
  .nav-logo-img{height:54px}
}
