/* === AMIL SAÚDE — DESIGN SYSTEM === */
:root {
  --amil-violet: #4624fb;
  --amil-violet-bright: #592dff;
  --amil-navy: #0f0d59;
  --amil-cyan: #1dadfc;
  --amil-green: #22d896;
  --whatsapp: #25d366;
  --ink: #16151f;
  --muted: #686775;
  --surface: #f5f5f8;
  --line: #dedee7;
  --white: #fff;
  --bronze: #9a684a;
  --silver: #a5a5a5;
  --gold: #a8892c;
  --platinum: #4a4a4d;
  --black: #202020;
  --radius-sm: 14px;
  --radius: 22px;
  --radius-lg: 34px;
  --shadow: 0 20px 55px rgba(15, 13, 89, .12);
  --shadow-soft: 0 12px 35px rgba(15, 13, 89, .08);
  --container: min(1180px, calc(100% - 40px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}
button, input, select, textarea { font: inherit; }
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }

.container { width: var(--container); margin-inline: auto; }

.skip-link {
  position: fixed; z-index: 100; top: 12px; left: 12px;
  padding: 10px 16px; color: white; background: var(--amil-navy);
  border-radius: 10px; transform: translateY(-160%);
}
.skip-link:focus { transform: translateY(0); }

.announcement {
  color: var(--white); background: var(--amil-navy);
  font-size: .82rem; font-weight: 700; letter-spacing: .04em;
}
.announcement .container {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 36px; gap: 20px;
}
.announcement span:last-child { color: #a9e1ff; }

.site-header {
  position: sticky; z-index: 50; top: 0;
  background: rgba(255,255,255,.92);
  border-bottom: 1px solid rgba(222,222,231,.8);
  backdrop-filter: blur(18px);
}
.nav {
  display: flex; min-height: 78px; align-items: center;
  justify-content: space-between; gap: 28px;
}
.logo {
  display: inline-flex; align-items: center; line-height: 1;
}
.logo img { height: 40px; width: auto; display: block; }
.site-footer .logo img { height: 34px; }
.nav-links {
  display: flex; align-items: center; gap: 28px;
  color: #343242; font-size: .95rem; font-weight: 700;
}
.nav-links a { position: relative; padding-block: 8px; }
.nav-links a:not(.button)::after {
  position: absolute; right: 0; bottom: 0; left: 0;
  height: 2px; content: ""; background: var(--amil-violet);
  transform: scaleX(0); transform-origin: left; transition: transform .2s ease;
}
.nav-links a:hover::after, .nav-links a:focus-visible::after { transform: scaleX(1); }

.menu-button {
  display: none; width: 44px; height: 44px; padding: 0;
  color: var(--amil-navy); background: var(--surface);
  border: 0; border-radius: 12px;
}

.button {
  display: inline-flex; min-height: 48px; align-items: center;
  justify-content: center; gap: 9px; padding: 12px 22px;
  color: var(--white); background: var(--amil-violet);
  border: 1px solid transparent; border-radius: 999px;
  font-size: .95rem; font-weight: 800;
  box-shadow: 0 9px 22px rgba(70,36,251,.2);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover, .button:focus-visible {
  background: #3517dd; box-shadow: 0 13px 28px rgba(70,36,251,.28);
  transform: translateY(-2px);
}
.button.secondary { color: var(--amil-navy); background: var(--white); box-shadow: none; }
.button.secondary:hover, .button.secondary:focus-visible {
  color: var(--white); background: var(--amil-navy);
}
.button.whatsapp { background: var(--whatsapp); box-shadow: 0 9px 22px rgba(37,211,102,.22); }
.button.whatsapp:hover, .button.whatsapp:focus-visible { background: #18b954; }

.hero {
  position: relative; overflow: hidden; color: var(--white);
  background:
    radial-gradient(circle at 83% 18%, rgba(29,173,252,.35), transparent 22%),
    radial-gradient(circle at 60% 112%, rgba(70,36,251,.9), transparent 38%),
    linear-gradient(120deg, #0b0a49 0%, #171174 50%, #3519b8 100%);
}
.hero::before {
  position: absolute; inset: 0; content: ""; pointer-events: none; opacity: .16;
  background-image: radial-gradient(circle, #fff 1px, transparent 1.4px);
  background-size: 27px 27px;
  mask-image: linear-gradient(90deg, black, transparent 76%);
}
.hero-grid {
  position: relative; z-index: 1; display: grid;
  min-height: 690px; align-items: center;
  grid-template-columns: 1.08fr .92fr; gap: 64px;
  padding-block: 82px 92px;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  margin-bottom: 22px; color: #c4ecff;
  font-size: .78rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase;
}
.eyebrow::before { width: 28px; height: 2px; content: ""; background: var(--amil-cyan); }

h1, h2, h3, p { margin-top: 0; }
h1 {
  max-width: 740px; margin-bottom: 26px;
  font-size: clamp(2.65rem, 5vw, 4.85rem);
  line-height: .98; letter-spacing: -.055em;
}
.hero-copy > p {
  max-width: 680px; margin-bottom: 30px;
  color: rgba(255,255,255,.78); font-size: clamp(1rem, 1.5vw, 1.2rem);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 34px; }
.hero-trust {
  display: flex; flex-wrap: wrap; gap: 12px 22px;
  color: rgba(255,255,255,.86); font-size: .9rem; font-weight: 650;
}
.trust-item { display: inline-flex; align-items: center; gap: 9px; }
.check-dot {
  display: grid; width: 22px; height: 22px; place-items: center;
  color: var(--amil-navy); background: var(--amil-green);
  border-radius: 50%; font-size: .75rem; font-weight: 900;
}
.hero-visual { position: relative; min-height: 500px; }
.orbit {
  position: absolute; top: 3%; right: -3%; width: 480px; aspect-ratio: 1;
  border: 52px solid rgba(29,173,252,.22);
  border-right-color: rgba(255,255,255,.08);
  border-radius: 50%; transform: rotate(-22deg);
}
.orbit::after {
  position: absolute; inset: 48px; content: "";
  border: 2px solid rgba(255,255,255,.18); border-radius: inherit;
}
.product-card-visual {
  position: absolute; width: 355px; min-height: 218px; padding: 27px;
  overflow: hidden; border: 1px solid rgba(255,255,255,.22);
  border-radius: 27px; box-shadow: 0 35px 70px rgba(0,0,0,.32);
  transform-style: preserve-3d;
}
.product-card-visual::before {
  position: absolute; inset: 0; content: "";
  background: linear-gradient(120deg, transparent 10%, rgba(255,255,255,.38) 44%, transparent 62%);
  transform: translateX(-88%);
}
.product-card-visual .mini-logo { font-size: 1.9rem; font-weight: 800; letter-spacing: -.08em; }
.product-card-visual small {
  position: absolute; right: 26px; bottom: 23px;
  font-size: .72rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase;
}
.product-card-visual.bronze {
  z-index: 2; top: 55px; right: 70px; color: #fff;
  background: linear-gradient(105deg, rgba(255,255,255,.18), transparent 42%), linear-gradient(135deg, #603a29, #b77c55 50%, #75442f);
  transform: rotate(7deg);
}
.product-card-visual.platinum {
  z-index: 3; top: 190px; right: 128px; color: white;
  background: linear-gradient(105deg, rgba(255,255,255,.2), transparent 42%), linear-gradient(135deg, #202024, #707076 48%, #303035);
  transform: rotate(-5deg);
}
.product-card-visual.black {
  z-index: 4; top: 322px; right: 35px; color: white;
  background: radial-gradient(circle at 65% 28%, rgba(255,255,255,.17), transparent 30%), linear-gradient(145deg, #070707, #252525 52%, #080808);
  transform: rotate(5deg);
}
.floating-label {
  position: absolute; z-index: 8; top: 25px; left: 0;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 16px; color: var(--amil-navy);
  background: rgba(255,255,255,.92); border: 1px solid rgba(255,255,255,.65);
  border-radius: 14px; font-size: .84rem; font-weight: 800;
  box-shadow: var(--shadow-soft); backdrop-filter: blur(12px);
}
.floating-label::before {
  width: 10px; height: 10px; content: ""; background: var(--amil-green);
  border-radius: 50%; box-shadow: 0 0 0 5px rgba(34,216,150,.16);
}

.section { padding-block: 100px; }
.section.surface { background: var(--surface); }

.section-heading {
  display: grid; max-width: 760px; margin-bottom: 48px;
  grid-template-columns: 4px 1fr; column-gap: 18px;
}
.section-heading::before {
  content: ""; background: linear-gradient(var(--amil-cyan), var(--amil-violet)); border-radius: 99px;
}
.section-heading .kicker {
  margin-bottom: 7px; color: var(--amil-violet);
  font-size: .78rem; font-weight: 850; letter-spacing: .14em; text-transform: uppercase;
}
.section-heading h2 {
  margin-bottom: 12px; color: var(--amil-navy);
  font-size: clamp(2rem, 4vw, 3.25rem); line-height: 1.03; letter-spacing: -.045em;
}
.section-heading p { margin-bottom: 0; color: var(--muted); font-size: 1.05rem; }

.product-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 18px; }
.family-card {
  position: relative; min-height: 380px; padding: 26px;
  overflow: hidden; background: var(--white);
  border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow-soft); transition: transform .22s ease, box-shadow .22s ease;
}
.family-card:hover { box-shadow: var(--shadow); transform: translateY(-7px); }
.family-card::before {
  position: absolute; top: 0; right: 0; left: 0; height: 8px;
  content: ""; background: var(--family);
}
.family-card::after {
  position: absolute; z-index: 0; top: -55px; right: -60px; width: 175px; aspect-ratio: 1;
  content: ""; border: 28px solid color-mix(in srgb, var(--family) 22%, transparent);
  border-radius: 50%;
}
.family-card > * { position: relative; z-index: 1; }
.family-card.bronze { --family: var(--bronze); }
.family-card.silver { --family: var(--silver); }
.family-card.gold { --family: var(--gold); }
.family-card.platinum { --family: var(--platinum); }
.family-card.black { --family: var(--black); color: var(--white); background: #171717; border-color: #2b2b2b; }
.family-card.black p, .family-card.black li { color: #c9c9c9; }
.family-card.selecionada { --family: var(--amil-violet); }

.family-icon {
  display: grid; width: 54px; height: 54px; margin-bottom: 60px;
  place-items: center; color: var(--family);
  background: color-mix(in srgb, var(--family) 10%, white); border-radius: 16px;
}
.family-card.black .family-icon { color: white; background: #333; }
.family-card h3 { margin-bottom: 8px; color: var(--amil-navy); font-size: 1.75rem; letter-spacing: -.04em; }
.family-card.black h3 { color: white; }
.family-card p { min-height: 74px; margin-bottom: 22px; color: var(--muted); font-size: .94rem; }
.tag-list { display: flex; flex-wrap: wrap; gap: 7px; margin: 0; padding: 0; list-style: none; }
.tag-list li {
  padding: 6px 10px; color: #4b4957; background: var(--surface);
  border-radius: 999px; font-size: .75rem; font-weight: 750;
}
.family-card.black .tag-list li { color: white; background: #2f2f2f; }

.card-cta {
  display: block; margin-top: 18px; padding: 10px 16px;
  border-radius: 999px; font-size: .82rem; font-weight: 800;
  text-align: center; text-decoration: none;
  border: 1.5px solid var(--line); color: var(--amil-navy);
  transition: background .2s, color .2s, border-color .2s;
}
.card-cta:hover { background: var(--amil-violet); color: white; border-color: var(--amil-violet); }
.family-card.black .card-cta { color: #ccc; border-color: #3a3a3a; }
.family-card.black .card-cta:hover { background: var(--amil-violet); color: white; border-color: var(--amil-violet); }
.family-card.selecionada .card-cta { color: var(--amil-violet); border-color: rgba(70,36,251,.25); }
.family-card.selecionada .card-cta:hover { background: var(--amil-violet); color: white; border-color: var(--amil-violet); }

.editorial-grid { display: grid; align-items: center; grid-template-columns: .93fr 1.07fr; gap: 78px; }
.editorial-copy h2 { margin-bottom: 20px; color: var(--amil-navy); font-size: clamp(2.2rem,4vw,3.55rem); line-height: 1; letter-spacing: -.05em; }
.editorial-copy > p { color: var(--muted); font-size: 1.08rem; }
.benefit-list { display: grid; margin: 34px 0 0; padding: 0; list-style: none; gap: 4px; }
.benefit-list li {
  display: grid; align-items: center; padding: 15px 0;
  border-bottom: 1px solid var(--line); grid-template-columns: 42px 1fr;
  gap: 15px; color: #363441; font-weight: 750;
}
.line-icon {
  display: grid; width: 42px; height: 42px; place-items: center;
  color: var(--amil-violet); background: #efebff; border-radius: 13px;
}
.editorial-art {
  position: relative; min-height: 570px; overflow: hidden;
  background: radial-gradient(circle at 72% 24%, rgba(29,173,252,.2), transparent 23%), linear-gradient(145deg, #f6f4ff, #eef8ff);
  border-radius: var(--radius-lg);
}
.editorial-art .arch {
  position: absolute; top: 58px; right: 45px; width: 350px; aspect-ratio: 1;
  border: 45px solid var(--amil-cyan); border-right-color: var(--amil-violet);
  border-radius: 50%; transform: rotate(25deg);
}
.portrait { position: absolute; z-index: 3; right: 82px; bottom: 0; width: 310px; height: 440px; }
.editorial-photo {
  position: absolute; z-index: 3; right: 32px; bottom: 0;
  width: 340px; height: auto; display: block;
  border-radius: 16px 16px 0 0;
  mix-blend-mode: multiply;
}
.portrait .head {
  position: absolute; z-index: 3; top: 12px; left: 91px; width: 118px; height: 145px;
  background: #b96f48; border-radius: 52% 48% 46% 48%;
  box-shadow: inset -15px -10px 0 rgba(92,42,25,.12);
}
.portrait .hair {
  position: absolute; z-index: 2; top: -9px; left: 64px; width: 170px; height: 175px;
  background: #19141c; border-radius: 48% 55% 42% 48%; transform: rotate(-8deg);
}
.portrait .hair::after {
  position: absolute; top: 70px; right: -9px; width: 50px; height: 150px;
  content: ""; background: #19141c; border-radius: 50%; transform: rotate(-8deg);
}
.portrait .neck { position: absolute; z-index: 2; top: 128px; left: 124px; width: 58px; height: 75px; background: #ad603f; }
.portrait .body {
  position: absolute; z-index: 1; right: 0; bottom: -15px; left: 0; height: 310px;
  background: linear-gradient(135deg, #25128c, #4c25f7 60%, #1dadfc);
  border-radius: 48% 48% 15px 15px;
  clip-path: polygon(19% 15%, 42% 0, 58% 0, 82% 15%, 100% 100%, 0 100%);
}
.portrait .face-detail {
  position: absolute; z-index: 4; top: 78px; left: 120px; width: 52px; height: 28px;
  border-bottom: 4px solid #663223; border-radius: 50%;
}
.art-note {
  position: absolute; z-index: 6; bottom: 34px; left: 32px; width: 220px;
  padding: 16px 18px; color: var(--amil-navy); background: rgba(255,255,255,.92);
  border: 1px solid rgba(255,255,255,.8); border-radius: 16px;
  box-shadow: var(--shadow-soft); font-size: .84rem; font-weight: 750; backdrop-filter: blur(10px);
}

.comparison-wrap { overflow: hidden; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-soft); }
.comparison-scroll { overflow-x: auto; }
.comparison { width: 100%; min-width: 820px; border-collapse: separate; border-spacing: 0; text-align: left; }
.comparison th, .comparison td { padding: 18px 20px; border-bottom: 1px solid var(--line); vertical-align: middle; }
.comparison thead th { color: var(--white); background: var(--amil-navy); font-size: .85rem; letter-spacing: .03em; }
.comparison thead th:first-child { min-width: 230px; }
.comparison tbody th { color: var(--amil-navy); background: #fafafe; font-size: .92rem; }
.comparison tbody tr:last-child th, .comparison tbody tr:last-child td { border-bottom: 0; }
.product-pill {
  display: inline-flex; min-width: 106px; min-height: 44px; align-items: center;
  justify-content: center; padding: 8px 13px; color: white; background: var(--pill);
  border-radius: 999px; text-align: center; font-size: .78rem; line-height: 1.1; font-weight: 850;
}
.coverage-yes, .coverage-no { display: inline-grid; width: 30px; height: 30px; place-items: center; border-radius: 50%; font-size: .82rem; font-weight: 900; }
.coverage-yes { color: #075d3d; background: #d9f8eb; }
.coverage-no { color: #767482; background: #efeff3; }
.comparison-note { padding: 17px 20px; color: var(--muted); background: #fafafe; border-top: 1px solid var(--line); font-size: .82rem; }

.black-section { position: relative; overflow: hidden; color: white; background: #121212; }
.black-section::after {
  position: absolute; top: -190px; right: -150px; width: 580px; aspect-ratio: 1;
  content: ""; border: 70px solid rgba(255,255,255,.045); border-radius: 50%;
}
.black-grid { position: relative; z-index: 1; display: grid; align-items: center; grid-template-columns: .9fr 1.1fr; gap: 72px; }
.black-copy .eyebrow { color: #c9c9c9; }
.black-copy h2 { margin-bottom: 24px; font-size: clamp(2.4rem,4.5vw,4.2rem); line-height: .96; letter-spacing: -.05em; }
.black-copy p { max-width: 570px; color: #b9b9b9; font-size: 1.06rem; }
.black-section .hero-actions { margin-bottom: 0; }
.black-section .button.secondary {
  color: white; background: transparent; border-color: rgba(255,255,255,.3); box-shadow: none;
}
.black-section .button.secondary:hover,
.black-section .button.secondary:focus-visible {
  color: #111; background: white; border-color: white;
}
.black-benefits { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; }
.black-benefit {
  display: grid; min-height: 148px; padding: 20px 17px; place-items: center;
  color: #1c1c1c; background: #f9f9f9; border: 1px solid #383838;
  border-radius: 16px; text-align: center; font-size: .82rem; font-weight: 850;
}
.black-benefit:nth-child(odd) { color: white; background: #282828; }

.quote-section {
  position: relative; overflow: hidden;
  background: radial-gradient(circle at 10% 90%, rgba(29,173,252,.2), transparent 25%), linear-gradient(135deg, #f6f3ff, #eef9ff);
}
.quote-grid { display: grid; align-items: start; grid-template-columns: .85fr 1.15fr; gap: 70px; }
.quote-copy h2 { margin-bottom: 20px; color: var(--amil-navy); font-size: clamp(2.25rem,4vw,3.7rem); line-height: 1; letter-spacing: -.05em; }
.quote-copy p { color: var(--muted); font-size: 1.06rem; }
.quote-highlights { display: grid; margin-top: 34px; gap: 12px; }
.quote-highlight { display: flex; align-items: center; gap: 12px; color: var(--amil-navy); font-weight: 750; }
.quote-form { padding: 34px; background: white; border: 1px solid rgba(222,222,231,.9); border-radius: var(--radius); box-shadow: var(--shadow); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-field { display: grid; gap: 7px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { color: #32303c; font-size: .82rem; font-weight: 800; }
.form-field input, .form-field select, .form-field textarea {
  width: 100%; min-height: 50px; padding: 12px 14px;
  color: var(--ink); background: #fbfbfd; border: 1px solid #d9d9e3;
  border-radius: 12px; outline: none; transition: border .2s ease, box-shadow .2s ease;
}
.form-field textarea { min-height: 104px; resize: vertical; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  border-color: var(--amil-violet); box-shadow: 0 0 0 4px rgba(70,36,251,.12);
}
.form-actions { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-top: 22px; }
.form-actions small { max-width: 260px; color: var(--muted); font-size: .74rem; }
.form-status { display: none; margin-top: 18px; padding: 13px 15px; color: #075d3d; background: #d9f8eb; border: 1px solid #afe9d2; border-radius: 12px; font-size: .88rem; font-weight: 750; }
.form-status.error { color: #8f1d27; background: #fff0f1; border-color: #f2c4c8; }

.site-footer { color: #d9d8e8; background: var(--amil-navy); }
.footer-grid { display: grid; padding-block: 60px; grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr; gap: 36px; }
.footer-brand .logo { display: inline-flex; align-items: center; margin-bottom: 18px; }
.footer-brand p { max-width: 390px; color: #aaa9c9; font-size: .88rem; }
.footer-column h3 { margin-bottom: 16px; color: white; font-size: .88rem; letter-spacing: .05em; text-transform: uppercase; }
.footer-column ul { display: grid; margin: 0; padding: 0; list-style: none; gap: 10px; color: #aaa9c9; font-size: .86rem; }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding-block: 20px 28px; color: #8c8bb0;
  border-top: 1px solid rgba(255,255,255,.1); font-size: .75rem; gap: 20px;
}

.floating-whatsapp {
  position: fixed; z-index: 45; right: 22px; bottom: 22px;
  display: grid; width: 58px; height: 58px; place-items: center;
  color: white; background: var(--whatsapp); border: 4px solid white;
  border-radius: 50%; box-shadow: 0 12px 32px rgba(0,0,0,.2); transition: transform .2s ease;
}
.floating-whatsapp:hover, .floating-whatsapp:focus-visible { transform: translateY(-4px) scale(1.03); }

:focus-visible { outline: 3px solid var(--amil-cyan); outline-offset: 3px; }

/* ============================================================
   COMPONENTES DE PÁGINAS DE ESTADO
   ============================================================ */

/* Breadcrumb */
.breadcrumb { display: flex; gap: 8px; align-items: center; font-size: .78rem; color: rgba(255,255,255,.65); margin-bottom: 18px; }
.breadcrumb a { color: rgba(255,255,255,.65); }
.breadcrumb a:hover { color: white; }

/* Hero estado (versão mais compacta) */
.hero-state .hero-grid { grid-template-columns: 1fr; min-height: 440px; padding-block: 72px 80px; }

/* Artigo editorial */
.state-article { max-width: 840px; }
.state-article h2 { color: var(--amil-navy); font-size: clamp(1.8rem, 3vw, 2.6rem); letter-spacing: -.04em; margin-bottom: 20px; line-height: 1.05; }
.state-article p { color: var(--muted); font-size: 1.05rem; margin-bottom: 20px; line-height: 1.65; }
.state-article strong { color: var(--ink); }

/* Grid de hospitais */
.hospital-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 14px; margin-bottom: 22px; }
.hospital-card { display: flex; align-items: center; gap: 13px; padding: 16px 18px; background: white; border: 1px solid var(--line); border-radius: var(--radius-sm); font-size: .9rem; font-weight: 700; color: var(--ink); }
.hospital-dot { width: 10px; height: 10px; background: var(--amil-violet); border-radius: 50%; flex-shrink: 0; }
.hospital-disclaimer { padding: 14px 18px; background: #fffbeb; border: 1px solid #fde68a; border-radius: 12px; color: #78350f; font-size: .82rem; line-height: 1.55; margin-top: 6px; }

/* FAQ accordion */
.faq-list { display: grid; gap: 12px; max-width: 820px; }
.faq-item { background: white; border: 1px solid var(--line); border-radius: var(--radius-sm); overflow: hidden; }
.faq-question {
  width: 100%; padding: 18px 22px; text-align: left; background: none; border: none;
  font-weight: 750; font-size: .97rem; color: var(--amil-navy); cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq-question:hover { background: var(--surface); }
.faq-question::after { content: "+"; font-size: 1.4rem; font-weight: 400; color: var(--amil-violet); flex-shrink: 0; transition: transform .2s ease; }
.faq-item.open .faq-question::after { transform: rotate(45deg); }
.faq-answer { display: none; padding: 0 22px 18px; color: var(--muted); font-size: .94rem; line-height: 1.6; }
.faq-item.open .faq-answer { display: block; }

/* ============================================================
   BLOG
   ============================================================ */

.blog-hero {
  background:
    radial-gradient(circle at 80% 20%, rgba(29,173,252,.25), transparent 30%),
    linear-gradient(135deg, #0b0a49 0%, #1a1278 60%, #2d1fa0 100%);
}
.blog-hero .hero-grid { grid-template-columns: 1fr; min-height: 360px; padding-block: 64px 72px; }

.blog-meta {
  display: flex; gap: 18px; align-items: center; flex-wrap: wrap;
  margin-bottom: 28px; font-size: .82rem; color: var(--muted);
}
.blog-tag {
  display: inline-flex; padding: 5px 12px; background: #efebff;
  color: var(--amil-violet); border-radius: 999px;
  font-size: .75rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase;
}

.blog-article { max-width: 780px; }
.blog-article h2 {
  color: var(--amil-navy); font-size: clamp(1.55rem, 2.5vw, 2rem);
  letter-spacing: -.04em; margin-top: 52px; margin-bottom: 16px; line-height: 1.1;
}
.blog-article h3 {
  color: var(--amil-navy); font-size: 1.15rem; font-weight: 800;
  letter-spacing: -.02em; margin-top: 32px; margin-bottom: 10px;
}
.blog-article p { color: #3a3849; font-size: 1.05rem; line-height: 1.75; margin-bottom: 20px; }
.blog-article strong { color: var(--ink); }
.blog-article ul { padding-left: 22px; color: #3a3849; font-size: 1.05rem; line-height: 1.75; margin-bottom: 20px; }
.blog-article ul li { margin-bottom: 6px; }
.blog-article a { color: var(--amil-violet); text-decoration: underline; }

.blog-callout {
  padding: 22px 26px; background: #f0eeff;
  border-left: 4px solid var(--amil-violet); border-radius: 0 14px 14px 0;
  margin: 32px 0; color: var(--amil-navy); font-size: .97rem; font-weight: 700; line-height: 1.55;
}
.blog-callout span { color: var(--muted); font-weight: 500; display: block; margin-top: 6px; font-size: .9rem; }

.blog-cta-box {
  padding: 30px 32px; background: var(--amil-navy); border-radius: var(--radius);
  color: white; margin: 48px 0 0;
}
.blog-cta-box h3 { color: white; margin-bottom: 10px; font-size: 1.25rem; }
.blog-cta-box p { color: rgba(255,255,255,.78); font-size: .97rem; margin-bottom: 22px; }
.blog-cta-box .button.whatsapp { font-size: .9rem; }

.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.blog-card {
  background: white; border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; transition: transform .22s ease, box-shadow .22s ease;
  box-shadow: var(--shadow-soft);
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.blog-card-img {
  height: 160px;
  background: linear-gradient(135deg, var(--amil-navy), var(--amil-violet));
  display: flex; align-items: center; justify-content: center;
  font-size: 2.5rem; color: rgba(255,255,255,.25); font-weight: 800; letter-spacing: -.05em;
  overflow: hidden;
}
.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.blog-card-img--logo {
  background: #f4f2ff;
}
.blog-card-img--logo img {
  object-fit: contain;
  padding: 18px 24px;
}
.blog-card-body { padding: 22px; }
.blog-card-body .blog-tag { margin-bottom: 12px; }
.blog-card-body h3 { color: var(--amil-navy); font-size: 1.05rem; margin-bottom: 10px; line-height: 1.3; letter-spacing: -.02em; }
.blog-card-body p { color: var(--muted); font-size: .88rem; line-height: 1.55; margin-bottom: 16px; }
.blog-card-body a.read-more {
  color: var(--amil-violet); font-size: .85rem; font-weight: 800;
  text-decoration: none; display: inline-flex; align-items: center; gap: 6px;
}
.blog-card-body a.read-more:hover { text-decoration: underline; }

@media (max-width: 760px) {
  .blog-grid { grid-template-columns: 1fr; }
  .blog-article h2 { margin-top: 36px; }
}

/* ============================================================
   MEDIA QUERIES
   ============================================================ */
@media (max-width: 1020px) {
  .hero-grid, .editorial-grid, .black-grid, .quote-grid { grid-template-columns: 1fr; }
  .hero-grid { padding-top: 70px; }
  .hero-visual { width: min(100%, 600px); margin: 0 auto; }
  .product-grid { grid-template-columns: 1fr 1fr; }
  .states-grid { grid-template-columns: repeat(3,1fr) !important; }
  .editorial-art { min-height: 540px; }
  .black-benefits { grid-template-columns: repeat(4, 1fr); }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
}
@media (max-width: 760px) {
  :root { --container: min(100% - 28px, 680px); }
  .announcement span:first-child { display: none; }
  .announcement .container { justify-content: center; }
  .nav { min-height: 68px; }
  .menu-button { display: grid; place-items: center; }
  .nav-links {
    position: absolute; top: 68px; right: 14px; left: 14px;
    display: none; align-items: stretch; padding: 16px;
    background: white; border: 1px solid var(--line);
    border-radius: 16px; box-shadow: var(--shadow);
    flex-direction: column; gap: 4px;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px; }
  .nav-links .button { margin-top: 8px; }
  .hero-grid { min-height: auto; gap: 30px; padding-block: 58px 65px; }
  h1 { font-size: clamp(2.5rem, 13vw, 3.9rem); }
  .hero-copy > p { font-size: 1rem; }
  .hero-actions .button { width: 100%; }
  .hero-visual { min-height: 410px; transform: scale(.86); transform-origin: top center; margin-bottom: -50px; }
  .orbit { right: -60px; width: 430px; }
  .product-card-visual { width: 320px; }
  .product-card-visual.bronze { right: 45px; }
  .product-card-visual.platinum { right: 75px; }
  .product-card-visual.black { right: 15px; }
  .section { padding-block: 72px; }
  .product-grid { grid-template-columns: 1fr !important; }
  .states-grid { grid-template-columns: repeat(2,1fr) !important; }
  .family-card { min-height: 330px; }
  .family-icon { margin-bottom: 42px; }
  .editorial-grid { gap: 45px; }
  .editorial-art { min-height: 470px; }
  .editorial-art .arch { right: -70px; }
  .portrait { right: 20px; transform: scale(.88); transform-origin: bottom right; }
  .art-note { bottom: 22px; left: 20px; width: 185px; }
  .editorial-photo { width: 260px; right: 16px; }
  .black-benefits { grid-template-columns: 1fr 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .form-field.full { grid-column: auto; }
  .form-actions { align-items: stretch; flex-direction: column; }
  .quote-form { padding: 24px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .hospital-grid { grid-template-columns: 1fr; }
}
/* Depoimentos (homepage) */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
}
.testimonial-card {
  padding: 28px;
  background: white;
  border: 1px solid rgba(222, 222, 231, 0.9);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.testimonial-card.is-placeholder {
  border-style: dashed;
  opacity: 0.92;
}
.testimonial-card blockquote {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.55;
  color: var(--text);
}
.testimonial-card blockquote p::before {
  content: "\201C";
  color: var(--amil-cyan);
  font-weight: 700;
}
.testimonial-card footer {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: auto;
}
.testimonial-card footer strong {
  color: var(--amil-navy);
  font-size: 0.95rem;
}
.testimonial-result {
  color: var(--amil-violet);
  font-weight: 600;
}
.testimonials-notice {
  margin-top: 16px;
  padding: 12px 16px;
  background: rgba(29, 173, 252, 0.08);
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  color: var(--muted);
}
@media (max-width: 900px) {
  .testimonials-grid { grid-template-columns: 1fr; }
}

.blog-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(222, 222, 231, 0.9);
}
.blog-pagination-status {
  font-size: 0.9rem;
  color: var(--muted);
}
.blog-pagination-prev,
.blog-pagination-next {
  color: var(--amil-violet);
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
}
.blog-pagination-prev:hover,
.blog-pagination-next:hover { text-decoration: underline; }

.blog-category-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}
.blog-category-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: #efebff;
  color: var(--amil-violet);
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.15s ease;
}
.blog-category-chip:hover { background: #e0d8ff; }
.blog-category-count {
  display: inline-flex;
  min-width: 1.5rem;
  justify-content: center;
  padding: 2px 8px;
  background: var(--amil-violet);
  color: white;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 800;
}

a.blog-tag { text-decoration: none; }
a.blog-tag:hover { background: #e0d8ff; }

@media (max-width: 460px) {
  .hero-visual { margin-right: -28px; margin-left: -28px; transform: scale(.74); margin-bottom: -100px; }
  .black-benefits, .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .states-grid { grid-template-columns: 1fr !important; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
}
/* ============================================================
   PÁGINA PRODUTO — AMIL BLACK
   ============================================================ */

.black-page .hero-black {
  position: relative; overflow: hidden; color: white;
  background:
    radial-gradient(circle at 78% 12%, rgba(255,255,255,.06), transparent 28%),
    radial-gradient(circle at 12% 88%, rgba(255,255,255,.04), transparent 32%),
    linear-gradient(155deg, #080808 0%, #141414 42%, #1f1f1f 100%);
}
.black-page .hero-black::before {
  position: absolute; inset: 0; content: "";
  background: repeating-linear-gradient(
    90deg, transparent 0, transparent 118px, rgba(255,255,255,.018) 118px, rgba(255,255,255,.018) 119px
  );
  pointer-events: none;
}
.black-page .hero-black .hero-grid {
  position: relative; z-index: 1; grid-template-columns: 1.05fr .95fr;
  min-height: 520px; padding-block: 84px 92px;
}
.black-page .hero-black .eyebrow {
  color: #a8a8a8; letter-spacing: .22em; text-transform: uppercase; font-size: .72rem;
}
.black-page .hero-black h1 {
  margin-bottom: 22px; font-size: clamp(2.5rem, 5vw, 4.4rem);
  line-height: .94; letter-spacing: -.055em; font-weight: 800;
}
.black-page .hero-black .hero-lead {
  max-width: 560px; color: #b5b5b5; font-size: 1.08rem; line-height: 1.62;
}
.black-page .hero-black .hero-actions { margin-top: 30px; }
.black-page .hero-black .button.secondary {
  color: white; background: transparent; border-color: rgba(255,255,255,.28);
}
.black-page .hero-black .button.secondary:hover,
.black-page .hero-black .button.secondary:focus-visible {
  color: #111; background: white; border-color: white;
}
.black-page .hero-black .button:not(.secondary):not(.whatsapp) {
  background: white; color: #111; box-shadow: 0 10px 28px rgba(0,0,0,.28);
}
.black-page .hero-black .button:not(.secondary):not(.whatsapp):hover,
.black-page .hero-black .button:not(.secondary):not(.whatsapp):focus-visible {
  background: #ececec; color: #111;
}
.black-page .hero-black .hero-trust { color: #9a9a9a; }
.black-page .hero-black .check-dot { background: #2f2f2f; color: white; }
.black-page .hero-black .breadcrumb { color: rgba(255,255,255,.55); }
.black-page .hero-black .breadcrumb a { color: rgba(255,255,255,.55); }
.black-page .hero-black .breadcrumb a:hover { color: white; }
.black-page .hero-black .eyebrow::before { background: rgba(255,255,255,.45); }

.black-brand-ribbon {
  color: white; background: #0a0a0a;
  border-block: 1px solid rgba(255,255,255,.08);
  font-size: .68rem; font-weight: 800; letter-spacing: .38em; text-transform: uppercase;
}
.black-brand-ribbon .container {
  display: flex; min-height: 46px; align-items: center; justify-content: center;
  gap: 18px; overflow: hidden;
}
.black-brand-ribbon span { opacity: .72; white-space: nowrap; }

.black-anchor-nav {
  position: sticky; z-index: 40; top: 78px;
  background: rgba(255,255,255,.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}
.black-anchor-nav .container {
  display: flex; gap: 8px; padding-block: 10px;
  overflow-x: auto; scrollbar-width: none;
}
.black-anchor-nav .container::-webkit-scrollbar { display: none; }
.black-anchor-nav a {
  flex-shrink: 0; padding: 8px 14px; color: var(--muted);
  background: var(--surface); border: 1px solid transparent;
  border-radius: 999px; font-size: .78rem; font-weight: 750;
  transition: color .2s ease, background .2s ease, border-color .2s ease;
}
.black-anchor-nav a:hover,
.black-anchor-nav a:focus-visible {
  color: white; background: var(--black); border-color: var(--black);
}

.black-hero-visual {
  position: relative; min-height: 420px;
}
.black-orbit {
  position: absolute; top: 8%; right: -6%; width: 360px; aspect-ratio: 1;
  border: 42px solid rgba(255,255,255,.06);
  border-left-color: rgba(255,255,255,.14);
  border-radius: 50%; transform: rotate(-18deg);
}
.black-product-card {
  position: absolute; z-index: 2; right: 0; bottom: 18px; width: min(100%, 340px);
  padding: 34px 30px 78px; color: white;
  background:
    radial-gradient(circle at 72% 18%, rgba(255,255,255,.14), transparent 34%),
    linear-gradient(148deg, #050505 0%, #1d1d1d 48%, #090909 100%);
  border: 1px solid rgba(255,255,255,.16); border-radius: 28px;
  box-shadow: 0 34px 70px rgba(0,0,0,.45);
  transform: rotate(-4deg);
  transition: transform .35s ease, box-shadow .35s ease;
}
.black-product-card:hover { transform: rotate(-2deg) translateY(-6px); box-shadow: 0 42px 80px rgba(0,0,0,.52); }
.black-product-card .black-wordmark {
  display: block; font-size: 2.4rem; font-weight: 800; letter-spacing: -.08em; line-height: 1;
}
.black-product-card .black-tier {
  position: absolute; right: 28px; bottom: 28px;
  font-size: .74rem; font-weight: 850; letter-spacing: .18em; text-transform: uppercase;
}
.black-product-card .black-tagline {
  margin: 18px 0 0; max-width: 220px; color: rgba(255,255,255,.62);
  font-size: .92rem; line-height: 1.45;
}

.black-stats-section { padding-top: 48px; }
.black-stats-strip {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px;
  margin-top: -36px; position: relative; z-index: 2;
}
.black-stats-strip .black-hero-stat {
  background: white; color: var(--ink); border-color: var(--line);
  box-shadow: var(--shadow-soft);
}
.black-stats-strip .black-hero-stat strong { color: var(--amil-navy); }
.black-stats-strip .black-hero-stat span { color: var(--muted); }

.black-hero-panel {
  display: grid; gap: 12px; padding: 28px;
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius); backdrop-filter: blur(8px);
}
.black-hero-stat {
  display: grid; gap: 4px; padding: 18px 20px;
  background: #1a1a1a; border: 1px solid #333; border-radius: 14px;
}
.black-hero-stat strong {
  color: white; font-size: 1.35rem; letter-spacing: -.03em; line-height: 1.1;
}
.black-hero-stat span { color: #9a9a9a; font-size: .8rem; line-height: 1.45; }

.black-intro { max-width: 820px; }
.black-intro h2 {
  color: var(--amil-navy); font-size: clamp(1.9rem, 3.2vw, 2.8rem);
  letter-spacing: -.045em; margin-bottom: 18px; line-height: 1.04;
}
.black-intro p { color: var(--muted); font-size: 1.06rem; line-height: 1.68; margin-bottom: 18px; }

.black-variant-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px;
}
.black-variant-card {
  display: grid; gap: 14px; padding: 24px 22px;
  background: #111; color: white; border: 1px solid #2e2e2e;
  border-radius: var(--radius-sm); min-height: 100%;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.black-variant-card:hover {
  transform: translateY(-5px);
  border-color: #444;
  box-shadow: 0 18px 40px rgba(0,0,0,.22);
}
.black-variant-card.featured {
  background: white; color: #111; border-color: #d8d8d8;
  box-shadow: var(--shadow-soft);
  outline: 2px solid rgba(32,32,32,.08);
  outline-offset: 4px;
}
.black-variant-card.featured:hover {
  border-color: #c8c8c8;
  box-shadow: var(--shadow);
}
.black-variant-card .variant-tier {
  color: #8f8f8f; font-size: .72rem; font-weight: 800;
  letter-spacing: .14em; text-transform: uppercase;
}
.black-variant-card.featured .variant-tier { color: var(--muted); }
.black-variant-card h3 {
  margin: 0; font-size: 1.35rem; letter-spacing: -.03em; line-height: 1.05;
}
.black-variant-card p { margin: 0; color: #b0b0b0; font-size: .88rem; line-height: 1.55; }
.black-variant-card.featured p { color: var(--muted); }
.black-variant-card ul {
  display: grid; gap: 7px; margin: 0; padding: 0; list-style: none;
}
.black-variant-card li {
  padding: 7px 10px; background: #1f1f1f; border-radius: 8px;
  font-size: .76rem; font-weight: 700; color: #d8d8d8;
}
.black-variant-card.featured li { background: var(--surface); color: var(--ink); }
.black-variant-card .variant-badge {
  display: inline-flex; width: fit-content; padding: 5px 10px;
  background: #2a2a2a; border-radius: 999px;
  font-size: .68rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
}
.black-variant-card.featured .variant-badge {
  color: white; background: var(--black);
}
.black-variant-card .card-cta { color: #ccc; border-color: #3a3a3a; }
.black-variant-card .card-cta:hover { background: var(--amil-violet); color: white; border-color: var(--amil-violet); }
.black-variant-card.featured .card-cta { color: var(--amil-violet); border-color: rgba(70,36,251,.25); }

.black-module-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.black-module-grid--spaced { margin-top: 22px; }
.black-module {
  display: grid; gap: 12px; padding: 26px 24px; min-height: 220px;
  border: 1px solid #2f2f2f; border-radius: var(--radius-sm);
  transition: transform .22s ease, box-shadow .22s ease;
}
.black-module:hover { transform: translateY(-3px); box-shadow: 0 14px 34px rgba(0,0,0,.08); }
.black-module.dark:hover { box-shadow: 0 14px 34px rgba(0,0,0,.28); }
.module-icon {
  display: grid; width: 44px; height: 44px; place-items: center;
  color: white; background: #2a2a2a; border-radius: 12px;
}
.black-module.light .module-icon {
  color: var(--amil-navy); background: white; border: 1px solid var(--line);
}
.black-module.dark { color: white; background: #141414; }
.black-module.light { color: #111; background: #f7f7f7; border-color: #e4e4e4; }
.black-module .module-kicker {
  color: #9a9a9a; font-size: .72rem; font-weight: 800;
  letter-spacing: .12em; text-transform: uppercase;
}
.black-module.light .module-kicker { color: var(--muted); }
.black-module h3 {
  margin: 0; font-size: 1.2rem; letter-spacing: -.03em; line-height: 1.15;
}
.black-module p { margin: 0; color: #b0b0b0; font-size: .9rem; line-height: 1.58; }
.black-module.light p { color: var(--muted); }
.black-module ul { margin: 0; padding-left: 18px; color: #b0b0b0; font-size: .86rem; line-height: 1.55; }
.black-module.light ul { color: var(--muted); }

.black-doctor-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px;
}
.black-services-scroll {
  display: flex; gap: 10px; padding-bottom: 4px;
  overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: thin;
}
.black-service-pill {
  flex: 0 0 auto; scroll-snap-align: start;
  display: grid; gap: 8px; min-width: 148px; padding: 18px 16px;
  color: white; background: #1a1a1a; border: 1px solid #333;
  border-radius: 14px; text-align: center;
  font-size: .76rem; font-weight: 800; line-height: 1.25;
}
.black-service-pill:nth-child(even) {
  color: #111; background: #f4f4f4; border-color: #ddd;
}
.black-service-pill svg { margin-inline: auto; opacity: .85; }

.black-doctor-card {
  padding: 16px 14px; background: #111; color: white;
  border: 1px solid #2f2f2f; border-radius: 12px;
  transition: border-color .2s ease, transform .2s ease;
}
.black-doctor-card:hover { border-color: #555; transform: translateY(-2px); }
.black-doctor-card strong {
  display: block; margin-bottom: 4px; font-size: .86rem; letter-spacing: -.02em;
}
.black-doctor-card span { color: #9a9a9a; font-size: .76rem; line-height: 1.4; }

.black-limit-box {
  padding: 18px 22px; background: #fffbeb; border: 1px solid #fde68a;
  border-radius: 12px; color: #78350f; font-size: .84rem; line-height: 1.6;
}
.black-limit-box strong { color: #5c2d0a; }

.black-page .comparison thead th { background: #111; color: white; }
.black-page .comparison tbody th { background: #fafafa; }

.black-page .quote-section {
  background:
    radial-gradient(circle at 88% 12%, rgba(255,255,255,.65), transparent 28%),
    linear-gradient(135deg, #f3f3f3 0%, #ececec 55%, #f8f8f8 100%);
}
.black-page .quote-copy h2 { color: var(--black); }

.black-diff-layout {
  display: grid; grid-template-columns: 1fr 320px; gap: 56px; align-items: start;
}
.black-diff-aside { position: sticky; top: 100px; display: grid; gap: 16px; }
.black-diff-card {
  padding: 22px; background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}
.black-diff-card.dark {
  color: white; background: #141414; border-color: #333;
}
.black-diff-hub-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px;
}
.black-diff-hub-card {
  display: grid; gap: 8px; padding: 22px 20px; min-height: 168px;
  border-radius: var(--radius-sm); text-decoration: none;
  transition: transform .22s ease, box-shadow .22s ease;
}
.black-diff-hub-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); }
.black-diff-hub-card.dark { color: white; background: #111; border: 1px solid #333; }
.black-diff-hub-card.light { color: var(--ink); background: white; border: 1px solid var(--line); }
.black-diff-hub-card strong { font-size: 1.05rem; letter-spacing: -.02em; line-height: 1.2; }
.black-diff-hub-card span:last-child { font-size: .82rem; line-height: 1.45; opacity: .78; }
.black-diff-hub-kicker {
  font-size: .68rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; opacity: .7;
}
.black-service-pill {
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease;
}
.black-service-pill:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(0,0,0,.12);
}
@media (max-width: 900px) {
  .black-diff-layout { grid-template-columns: 1fr; }
  .black-diff-aside { position: static; }
  .black-diff-hub-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .black-diff-hub-grid { grid-template-columns: 1fr; }
}

@media (max-width: 1020px) {
  .black-page .hero-black .hero-grid { grid-template-columns: 1fr; }
  .black-hero-visual { min-height: 300px; margin-top: 12px; }
  .black-product-card { position: relative; inset: auto; margin-inline: auto; transform: none; }
  .black-product-card:hover { transform: translateY(-4px); }
  .black-stats-strip { grid-template-columns: 1fr; margin-top: 20px; }
  .black-variant-grid { grid-template-columns: repeat(2, 1fr); }
  .black-module-grid { grid-template-columns: 1fr; }
  .black-doctor-grid { grid-template-columns: repeat(2, 1fr); }
  .black-anchor-nav { top: 72px; }
}
@media (max-width: 640px) {
  .black-variant-grid, .black-doctor-grid { grid-template-columns: 1fr; }
  .black-brand-ribbon span { letter-spacing: .22em; font-size: .62rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; }
}

/* ============================================================
   CRO CTA HOOKS — sticky mobile, mid-content, scroll-depth, form trust
   ============================================================ */

.mid-cta-section { padding-block: 28px; }
.mid-cta {
  display: flex; align-items: center; justify-content: space-between; gap: 28px;
  padding: 28px 32px;
  background:
    radial-gradient(circle at 92% 20%, rgba(29,173,252,.18), transparent 28%),
    linear-gradient(120deg, #0f0d59 0%, #1a1578 55%, #3519b8 100%);
  border-radius: var(--radius);
  color: white;
  box-shadow: var(--shadow-soft);
}
.mid-cta-copy { max-width: 560px; }
.mid-cta-copy strong {
  display: block; font-size: clamp(1.15rem, 2vw, 1.4rem);
  font-weight: 800; letter-spacing: -.03em; line-height: 1.2; margin-bottom: 8px;
}
.mid-cta-copy p {
  margin: 0; color: rgba(255,255,255,.78); font-size: .95rem; line-height: 1.5;
}
.mid-cta-actions {
  display: flex; flex-wrap: wrap; align-items: center; gap: 12px; flex-shrink: 0;
}
.mid-cta-actions .button.secondary {
  color: white; background: transparent; border-color: rgba(255,255,255,.35);
}
.mid-cta-actions .button.secondary:hover,
.mid-cta-actions .button.secondary:focus-visible {
  color: var(--amil-navy); background: white; border-color: white;
}
.mid-cta-actions .button:not(.whatsapp):not(.secondary) {
  background: var(--amil-violet);
}
.blog-cta-box .mid-cta-actions { margin-top: 4px; }
.blog-cta-box .button:not(.whatsapp) {
  background: var(--amil-violet);
  box-shadow: 0 9px 22px rgba(70,36,251,.28);
}

.form-trust-bar {
  display: flex; flex-wrap: wrap; gap: 10px 18px;
  margin: 0 0 18px; padding: 14px 16px;
  background: #f0eeff; border: 1px solid rgba(70,36,251,.12);
  border-radius: 14px;
}
.form-trust-item {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--amil-navy); font-size: .82rem; font-weight: 750;
}
.form-trust-item .check-dot {
  display: grid; place-items: center; width: 18px; height: 18px;
  color: white; background: var(--amil-violet); border-radius: 50%;
  font-size: .65rem; flex-shrink: 0;
}
.quote-copy .form-response-time {
  margin-top: 14px; color: var(--muted); font-size: .9rem; font-weight: 600;
}
.quote-copy .form-response-time strong { color: var(--amil-navy); }
.form-privacy-note {
  margin-top: 14px; color: var(--muted); font-size: .78rem; line-height: 1.45;
}
.form-privacy-note a { color: var(--amil-violet); font-weight: 700; text-decoration: underline; }

/* Sticky bottom CTA — mobile only; leaves room for floating WhatsApp */
.sticky-cta-bar {
  position: fixed; z-index: 48;
  left: 0; right: 0; bottom: 0;
  display: none;
  align-items: center; justify-content: space-between; gap: 10px;
  padding: 12px 14px calc(12px + env(safe-area-inset-bottom, 0px));
  padding-top: 14px;
  background: rgba(255,255,255,.97);
  border-top: 1px solid var(--line);
  box-shadow: 0 -8px 28px rgba(15,13,89,.12);
  backdrop-filter: blur(14px);
}
.sticky-cta-bar[hidden] { display: none !important; }
.sticky-cta-copy {
  display: none; flex: 1; min-width: 0;
  color: var(--amil-navy); font-size: .78rem; font-weight: 750; line-height: 1.25;
}
.sticky-cta-actions {
  display: flex; flex: 1; gap: 8px; width: 100%;
}
.sticky-cta-actions .button {
  flex: 1; min-height: 44px; padding: 10px 12px; font-size: .88rem;
  box-shadow: none;
}
.sticky-cta-dismiss {
  position: absolute; top: 4px; right: 8px;
  width: 28px; height: 28px; padding: 0;
  color: var(--muted); background: transparent; border: 0;
  border-radius: 8px; font-size: 1.1rem; line-height: 1; cursor: pointer;
}
.sticky-cta-dismiss:hover, .sticky-cta-dismiss:focus-visible {
  color: var(--amil-navy); background: var(--surface);
}

@media (max-width: 760px) {
  body.cta-sticky-active .sticky-cta-bar:not([hidden]) { display: flex; }
  body.cta-sticky-active {
    padding-bottom: calc(72px + env(safe-area-inset-bottom, 0px));
  }
  /* Keep green FAB clear of sticky bar */
  body.cta-sticky-active .floating-whatsapp {
    bottom: calc(78px + env(safe-area-inset-bottom, 0px));
  }
  /* LGPD banner (z 9999) takes bottom — hide sticky to avoid clash */
  body.cta-sticky-active:has(#lgpd-b) .sticky-cta-bar { display: none !important; }
  body.cta-sticky-active:has(#lgpd-b) .floating-whatsapp {
    bottom: calc(96px + env(safe-area-inset-bottom, 0px));
  }
  body.cta-sticky-active:has(#lgpd-b) {
    padding-bottom: 0;
  }
  .mid-cta { flex-direction: column; align-items: flex-start; padding: 24px 22px; }
  .mid-cta-actions { width: 100%; }
  .mid-cta-actions .button { flex: 1; min-width: 140px; }
}

/* Soft scroll-depth CTA (non-intrusive; not exit-intent) */
.scroll-cta {
  position: fixed; z-index: 46;
  right: 22px; bottom: 92px;
  width: min(340px, calc(100vw - 32px));
  padding: 18px 20px 16px;
  color: var(--ink); background: white;
  border: 1px solid var(--line); border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  transform: translateY(12px); opacity: 0;
  pointer-events: none; visibility: hidden;
  transition: opacity .28s ease, transform .28s ease, visibility .28s;
}
.scroll-cta.is-visible {
  transform: translateY(0); opacity: 1;
  pointer-events: auto; visibility: visible;
}
.scroll-cta[hidden] { display: none !important; }
.scroll-cta-close {
  position: absolute; top: 8px; right: 8px;
  width: 32px; height: 32px; padding: 0;
  color: var(--muted); background: var(--surface); border: 0;
  border-radius: 10px; font-size: 1.15rem; cursor: pointer; line-height: 1;
}
.scroll-cta-close:hover, .scroll-cta-close:focus-visible {
  color: var(--amil-navy); background: #ebeaf5;
}
.scroll-cta-kicker {
  display: block; margin-bottom: 6px;
  color: var(--amil-violet); font-size: .72rem; font-weight: 800;
  letter-spacing: .08em; text-transform: uppercase;
}
.scroll-cta strong {
  display: block; margin-bottom: 6px; padding-right: 28px;
  color: var(--amil-navy); font-size: 1rem; letter-spacing: -.02em; line-height: 1.25;
}
.scroll-cta p {
  margin: 0 0 14px; color: var(--muted); font-size: .88rem; line-height: 1.45;
}
.scroll-cta-actions { display: flex; flex-wrap: wrap; gap: 8px; }
.scroll-cta-actions .button {
  min-height: 42px; padding: 10px 16px; font-size: .88rem; box-shadow: none;
}

@media (max-width: 760px) {
  body.cta-sticky-active .scroll-cta {
    right: 12px; left: 12px; width: auto;
    bottom: calc(84px + env(safe-area-inset-bottom, 0px));
  }
  body:not(.cta-sticky-active) .scroll-cta {
    right: 12px; left: 12px; width: auto; bottom: 88px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .scroll-cta { transition: none; }
}

/* ============================================================
   SIMULADOR DE PLANOS AMIL PME
   ============================================================ */
.sim-disclaimer {
  padding: 18px 20px; margin-bottom: 16px;
  color: var(--ink); background: #fff8e8;
  border: 1px solid #f0d9a0; border-left: 4px solid var(--gold);
  border-radius: var(--radius-sm); font-size: .92rem; line-height: 1.55;
}
.sim-valid-note {
  margin: 0 0 28px; color: var(--muted); font-size: .88rem; line-height: 1.5;
}
.sim-loading { padding: 40px 20px; text-align: center; color: var(--muted); }
.sim-steps {
  display: flex; flex-wrap: wrap; gap: 8px; list-style: none;
  margin: 0 0 22px; padding: 0;
}
.sim-steps > li { margin: 0; }
.sim-step-dot {
  display: inline-flex; align-items: center; gap: 8px;
  min-height: 40px; padding: 8px 14px;
  color: var(--muted); background: white;
  border: 1px solid var(--line); border-radius: 999px;
  font-size: .82rem; font-weight: 700; cursor: pointer;
  transition: border-color .15s ease, color .15s ease, background .15s ease;
}
.sim-step-dot span {
  display: grid; width: 22px; height: 22px; place-items: center;
  color: white; background: #c5c4d0; border-radius: 50%;
  font-size: .72rem; font-weight: 800;
}
.sim-step-dot.is-active {
  color: var(--amil-navy); border-color: var(--amil-violet);
  background: rgba(70,36,251,.06); box-shadow: 0 0 0 3px rgba(70,36,251,.08);
}
.sim-step-dot.is-active span { background: var(--amil-violet); }
.sim-step-dot.is-done { color: var(--amil-navy); border-color: rgba(34,216,150,.45); }
.sim-step-dot.is-done span { background: var(--amil-green); color: var(--amil-navy); }

.sim-card {
  padding: 28px 28px 22px;
  background: white; border: 1px solid var(--line);
  border-radius: var(--radius); box-shadow: var(--shadow-soft);
}
.sim-card h2 {
  margin: 6px 0 10px; color: var(--amil-navy);
  font-size: clamp(1.35rem, 2.2vw, 1.7rem); letter-spacing: -.03em;
}
.sim-lead { margin: 0 0 20px; color: var(--muted); max-width: 640px; }
.sim-field-label {
  margin: 0 0 10px; color: var(--amil-navy);
  font-size: .88rem; font-weight: 800;
}
.sim-hint { display: block; margin-top: 8px; color: var(--muted); font-size: .82rem; }
.sim-choice-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 12px;
}
.sim-choice {
  position: relative; display: grid; gap: 4px;
  padding: 16px 16px 16px 42px;
  background: var(--surface); border: 2px solid transparent;
  border-radius: var(--radius-sm); cursor: pointer;
  transition: border-color .15s ease, background .15s ease, box-shadow .15s ease;
}
.sim-choice:hover { border-color: rgba(70,36,251,.25); }
.sim-choice.is-selected {
  background: white; border-color: var(--amil-violet);
  box-shadow: 0 8px 22px rgba(70,36,251,.1);
}
.sim-choice.is-disabled { opacity: .45; cursor: not-allowed; }
.sim-choice input {
  position: absolute; top: 18px; left: 14px; margin: 0;
  accent-color: var(--amil-violet);
}
.sim-choice-title {
  color: var(--amil-navy); font-size: .95rem; font-weight: 800; letter-spacing: -.02em;
}
.sim-choice-meta { color: var(--muted); font-size: .8rem; }
.sim-choice-line[data-line="linha_black"].is-selected { border-color: var(--black); }
.sim-choice-line[data-line="linha_selecionada"].is-selected { border-color: var(--amil-cyan); }

.sim-nav-actions {
  display: flex; flex-wrap: wrap; gap: 10px; justify-content: flex-end;
  margin-top: 24px; padding-top: 18px; border-top: 1px solid var(--line);
}
.sim-empty {
  padding: 18px; margin: 0;
  color: var(--muted); background: var(--surface);
  border-radius: var(--radius-sm); font-size: .92rem;
}
.sim-lives-bar {
  display: flex; flex-wrap: wrap; align-items: center; gap: 10px 16px;
  padding: 14px 16px; margin-bottom: 16px;
  border-radius: var(--radius-sm); font-size: .88rem;
}
.sim-lives-bar.is-ok {
  background: rgba(34,216,150,.12); border: 1px solid rgba(34,216,150,.35);
}
.sim-lives-bar.is-warn {
  background: #fff4e8; border: 1px solid #f0c48a;
}
.sim-lives-ok { color: #0d7a4a; font-weight: 700; }
.sim-lives-warn { color: #9a5b00; font-weight: 700; }

.sim-ben-rows { display: grid; gap: 12px; margin-bottom: 16px; }
.sim-ben-row {
  display: grid; grid-template-columns: 1fr 140px 44px; gap: 12px; align-items: end;
}
.sim-remove-row {
  width: 44px; height: 44px; margin-bottom: 2px;
  color: var(--muted); background: var(--surface);
  border: 1px solid var(--line); border-radius: 12px;
  font-size: 1.3rem; line-height: 1; cursor: pointer;
}
.sim-remove-row:hover:not(:disabled) { color: #b00020; border-color: #f0b0b8; }
.sim-remove-row:disabled { opacity: .4; cursor: not-allowed; }

.sim-results { margin-top: 36px; }
.sim-results-meta {
  display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 14px;
}
.sim-results-meta span {
  display: inline-flex; padding: 6px 12px;
  color: var(--amil-navy); background: white;
  border: 1px solid var(--line); border-radius: 999px;
  font-size: .78rem; font-weight: 700;
}
.sim-table tbody tr.is-selected-row { background: rgba(70,36,251,.05); }
.sim-table .sim-select-plan {
  min-height: 38px; padding: 8px 14px; font-size: .82rem; box-shadow: none;
}
.sim-table .sim-select-plan[aria-pressed="true"] {
  color: white; background: var(--amil-violet); border-color: var(--amil-violet);
}

.sim-cta-row { margin-top: 24px; }
.sim-cta-card {
  padding: 28px; background: white;
  border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}
.sim-summary-text {
  margin: 0 0 16px; color: var(--amil-navy);
  font-size: 1.05rem; font-weight: 750; letter-spacing: -.02em;
}
.sim-cta-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.sim-bullets {
  margin: 0; padding-left: 1.2em; color: var(--muted); line-height: 1.7;
}
.sim-bullets li { margin-bottom: 8px; }
.sim-bullets strong { color: var(--ink); }

@media (max-width: 640px) {
  .sim-card { padding: 20px 16px 16px; }
  .sim-ben-row { grid-template-columns: 1fr 1fr; }
  .sim-ben-row .sim-remove-row { grid-column: 2; justify-self: end; }
  .sim-steps { gap: 6px; }
  .sim-step-dot { padding: 6px 10px; font-size: .75rem; }
  .sim-nav-actions { justify-content: stretch; }
  .sim-nav-actions .button { flex: 1; }
}
