/* ============================================================
   Radar Concursos — Kit Visual ENAMED 2026
   Direção: medicina contemporânea + raciocínio + clareza + performance
   ============================================================ */

:root {
  --ink: #10242c;
  --ink-2: #17333d;
  --petrol: #0b2f39;
  --petrol-2: #123f4a;
  --teal: #109b97;
  --teal-d: #087773;
  --teal-l: #e2f6f3;
  --mint: #eefaf8;
  --aqua: #d8f2ee;
  --off: #f7fbfa;
  --white: #ffffff;
  --text: #4f636b;
  --muted: #71838a;
  --line: #dceae7;
  --line-dark: rgba(255,255,255,.12);
  --coral: #f27063;
  --coral-l: #fff0ee;
  --shadow: 0 12px 34px rgba(12, 52, 60, .09);
  --shadow-lg: 0 28px 70px rgba(8, 43, 51, .15);
  --radius: 18px;
  --radius-lg: 28px;
  --container: 1160px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
html, body { width: 100%; max-width: 100%; overflow-x: hidden; }
body {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.modal-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a, button { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }

h1, h2, h3 {
  font-family: 'Sora', sans-serif;
  color: var(--ink);
  line-height: 1.16;
}

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.center { text-align: center; }
.section { position: relative; padding: 88px 0; }
.section--soft {
  background:
    radial-gradient(circle at 9% 6%, rgba(16,155,151,.08), transparent 24%),
    radial-gradient(circle at 92% 84%, rgba(16,155,151,.05), transparent 22%),
    var(--off);
}
.section--dark {
  color: #d9e8e7;
  background:
    radial-gradient(700px 380px at 5% 0%, rgba(16,155,151,.17), transparent 64%),
    radial-gradient(600px 300px at 100% 100%, rgba(65,194,183,.09), transparent 60%),
    var(--petrol);
}
.section-head { max-width: 850px; }
.section__title { margin-bottom: 17px; font-size: clamp(2rem, 4vw, 2.7rem); font-weight: 800; letter-spacing: -.035em; }
.section__title--left { text-align: left; }
.section__title--light { color: #fff; }
.section__sub { max-width: 740px; margin: 0 auto; color: var(--muted); font-size: 1.05rem; }
.section__sub--left { margin-left: 0; text-align: left; }
.section__sub--light { color: #b8cdcc; }
.section-cta { margin-top: 34px; }

/* ---------- Badge ---------- */
.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  padding: 8px 13px;
  border: 1px solid rgba(16,155,151,.2);
  border-radius: 999px;
  color: var(--teal-d);
  background: var(--teal-l);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.badge--dark { color: #9fe2dc; background: rgba(16,155,151,.12); border-color: rgba(159,226,220,.2); }

/* ---------- Buttons ---------- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 15px 26px;
  border: 0;
  border-radius: 14px;
  font-size: .92rem;
  font-weight: 800;
  letter-spacing: .01em;
  line-height: 1.15;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary {
  color: #fff;
  background: linear-gradient(180deg, #13aaa5 0%, var(--teal-d) 100%);
  box-shadow: 0 12px 25px rgba(8,119,115,.26);
}
.btn--primary:hover { box-shadow: 0 16px 34px rgba(8,119,115,.34); }
.btn--outline { color: var(--petrol); background: #fff; border: 1.5px solid #b9d2cf; }
.btn--outline:hover { border-color: var(--teal); background: var(--mint); }
.btn--ghost { color: var(--petrol); background: transparent; border: 1px solid rgba(11,47,57,.16); }
.btn--ghost:hover { background: rgba(255,255,255,.8); border-color: rgba(11,47,57,.28); }
.btn--light { color: var(--petrol); background: #fff; box-shadow: 0 13px 30px rgba(0,0,0,.12); }
.btn--block { width: 100%; }
.btn--xl { min-height: 60px; padding: 18px 31px; }
.btn--3d { overflow: hidden; box-shadow: 0 5px 0 #066762, 0 14px 28px rgba(8,119,115,.28); }
.btn--3d:hover { transform: translateY(2px); box-shadow: 0 3px 0 #066762, 0 10px 20px rgba(8,119,115,.26); }
.btn--3d::after,
.hero__cta .btn--primary::after {
  content: '';
  position: absolute;
  inset: 0 auto 0 -55%;
  width: 35%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.5), transparent);
  transform: skewX(-18deg);
  animation: shine 2.8s ease-in-out infinite;
  pointer-events: none;
}
@keyframes shine { 0%, 35% { left: -55%; } 70%, 100% { left: 130%; } }

/* ---------- Topbar ---------- */
.topbar { position: relative; z-index: 20; background: #071f26; color: #cfe2e1; font-size: .82rem; }
.topbar__inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 8px; min-height: 42px; padding: 8px 18px; text-align: center; }
.topbar strong { color: #fff; }
.topbar__sep { opacity: .4; }
.topbar__pulse { width: 8px; height: 8px; border-radius: 50%; background: #41c2b7; box-shadow: 0 0 0 0 rgba(65,194,183,.55); animation: pulse 1.8s infinite; }
.topbar__count { padding: 4px 9px; border-radius: 999px; color: #fff; background: rgba(65,194,183,.16); font-weight: 800; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(65,194,183,.45); } 70% { box-shadow: 0 0 0 8px rgba(65,194,183,0); } 100% { box-shadow: 0 0 0 0 rgba(65,194,183,0); } }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 76px 0 82px;
  background:
    linear-gradient(rgba(11,47,57,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11,47,57,.025) 1px, transparent 1px),
    radial-gradient(900px 440px at 50% -4%, rgba(16,155,151,.16), transparent 65%),
    #fbfefd;
  background-size: 34px 34px, 34px 34px, auto, auto;
}
.hero__glow { position: absolute; z-index: -1; border-radius: 50%; filter: blur(2px); opacity: .5; }
.hero__glow--one { width: 300px; height: 300px; top: 20%; left: -130px; background: rgba(16,155,151,.12); }
.hero__glow--two { width: 260px; height: 260px; right: -90px; bottom: 2%; background: rgba(91,197,190,.11); }
.hero__inner { display: flex; flex-direction: column; align-items: center; text-align: center; }
.eyebrow { margin-bottom: 20px; color: var(--teal-d); font-size: .76rem; font-weight: 900; letter-spacing: .12em; }
.eyebrow span { margin: 0 6px; color: #9bb6b3; }
.hero__title { max-width: 1040px; margin-bottom: 22px; font-size: clamp(2.45rem, 6vw, 4.35rem); font-weight: 800; letter-spacing: -.055em; }
.hero__title .accent { position: relative; color: var(--teal-d); white-space: nowrap; }
.hero__title .accent::after { content: ''; position: absolute; left: 2%; right: 2%; bottom: .03em; height: .14em; border-radius: 99px; background: rgba(16,155,151,.15); z-index: -1; }
.hero__lead { max-width: 810px; margin-bottom: 26px; color: #5d7279; font-size: 1.12rem; }
.hero__lead strong { color: var(--ink); }
.hero__mockup { width: 100%; max-width: 810px; min-height: 390px; margin: 28px auto 26px; }
.hero__cta { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 2px; }
.micro-proof { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 22px; max-width: 970px; margin-top: 27px; color: #3e5d64; font-size: .84rem; font-weight: 700; }

/* ---------- Exam strip ---------- */
.exam-strip { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); width: min(760px, 100%); margin: 2px auto 8px; overflow: hidden; border: 1px solid var(--line); border-radius: 18px; background: rgba(255,255,255,.78); box-shadow: var(--shadow); backdrop-filter: blur(12px); }
.exam-strip__item { padding: 15px 18px; border-right: 1px solid var(--line); }
.exam-strip__item:last-child { border-right: 0; }
.exam-strip__item strong { display: block; color: var(--petrol); font-family: 'Sora'; font-size: 1.2rem; }
.exam-strip__item span { display: block; margin-top: 1px; color: var(--muted); font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; }

/* ---------- Media slots / graceful placeholders ---------- */
.media-slot { position: relative; overflow: hidden; border-radius: var(--radius); background: linear-gradient(145deg, #e8f7f5, #f9fdfc); }
.media-slot img { width: 100%; height: 100%; object-fit: cover; }
.media-slot.is-empty { display: flex; align-items: center; justify-content: center; min-height: 180px; border: 1px dashed #a8d4cf; background:
  linear-gradient(120deg, rgba(16,155,151,.07), rgba(255,255,255,.9)),
  repeating-linear-gradient(0deg, transparent, transparent 21px, rgba(16,155,151,.045) 22px); }
.media-slot.is-empty::before { content: 'ENAMED 2026'; position: absolute; top: 16px; left: 18px; color: rgba(11,47,57,.34); font-family: 'Sora'; font-size: .66rem; font-weight: 800; letter-spacing: .13em; }
.media-slot.is-empty::after { content: attr(data-label); max-width: 80%; padding: 12px 18px; border-radius: 999px; color: var(--teal-d); background: rgba(255,255,255,.83); box-shadow: 0 8px 25px rgba(14,83,88,.09); font-size: .76rem; font-weight: 800; text-align: center; }
.media-slot--hero.is-empty { min-height: 430px; border-radius: 26px; box-shadow: var(--shadow-lg); }
.media-slot--tall { min-height: 500px; }

/* ---------- Gallery ---------- */
.gallery { width: 100%; margin: 44px 0; overflow: hidden; }
.gallery--stack { margin-top: -10px; }
.gallery__track { display: flex; gap: 18px; width: max-content; padding: 3px 9px; animation: slideLeft 42s linear infinite; }
.gallery__track--rev { animation-direction: reverse; }
.gallery__item { width: 230px; aspect-ratio: 4 / 5; flex: 0 0 auto; border: 1px solid rgba(11,47,57,.08); border-radius: 18px; box-shadow: 0 12px 26px rgba(11,47,57,.09); }
.gallery__item.is-empty { min-height: 287px; }
.gallery:hover .gallery__track { animation-play-state: paused; }
@keyframes slideLeft { from { transform: translateX(0); } to { transform: translateX(calc(-50% - 9px)); } }

/* ---------- Dark intro ---------- */
.split-intro { display: grid; grid-template-columns: 1.08fr .92fr; gap: 70px; align-items: end; }
.challenge-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 45px; }
.challenge-card { position: relative; min-height: 240px; padding: 30px; overflow: hidden; border: 1px solid var(--line-dark); border-radius: 20px; background: rgba(255,255,255,.045); }
.challenge-card::after { content: ''; position: absolute; width: 130px; height: 130px; right: -55px; bottom: -55px; border-radius: 50%; background: rgba(16,155,151,.08); }
.challenge-card__num { display: inline-block; margin-bottom: 40px; color: #8dd8d1; font-family: 'Sora'; font-size: .76rem; font-weight: 800; letter-spacing: .12em; }
.challenge-card h3 { margin-bottom: 10px; color: #fff; font-size: 1.12rem; }
.challenge-card p { color: #b8cdcc; font-size: .92rem; }

/* ---------- Clinical flow ---------- */
.clinical-flow { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr; align-items: stretch; gap: 12px; margin-top: 46px; }
.flow-step { min-height: 180px; padding: 24px 20px; border: 1px solid var(--line); border-radius: 20px; background: #fff; box-shadow: var(--shadow); }
.flow-step span { display: inline-flex; align-items: center; justify-content: center; width: 38px; height: 38px; margin-bottom: 28px; border-radius: 12px; color: var(--teal-d); background: var(--teal-l); font-size: .78rem; font-weight: 900; }
.flow-step strong { display: block; margin-bottom: 8px; color: var(--ink); font-family: 'Sora'; font-size: .98rem; }
.flow-step small { display: block; color: var(--muted); font-size: .8rem; line-height: 1.45; }
.flow-step--accent { border-color: rgba(16,155,151,.35); background: linear-gradient(180deg, #fff, var(--mint)); }
.flow-step--accent span { color: #fff; background: var(--teal); }
.flow-arrow { display: flex; align-items: center; color: #8eb4b1; font-size: 1.35rem; }

/* ---------- Grids ---------- */
.grid { display: grid; gap: 20px; margin-top: 45px; }
.grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }

/* ---------- Feature cards ---------- */
.receive-showcase { position: relative; max-width: 980px; margin-top: 46px; }
.receive-showcase__image { overflow: hidden; aspect-ratio: 4 / 3; border: 1px solid rgba(11,47,57,.1); border-radius: 28px; background: #fff; box-shadow: var(--shadow-lg); }
.receive-showcase__image img { width: 100%; height: 100%; object-fit: cover; }
.receive-showcase__caption { position: absolute; right: 48px; bottom: -25px; left: 48px; display: grid; grid-template-columns: repeat(3, 1fr); overflow: hidden; border: 1px solid rgba(16,155,151,.22); border-radius: 18px; background: rgba(255,255,255,.94); box-shadow: 0 16px 38px rgba(8,43,51,.14); backdrop-filter: blur(14px); }
.receive-showcase__caption span { padding: 16px 20px; color: var(--muted); font-size: .76rem; font-weight: 700; text-align: center; }
.receive-showcase__caption span + span { border-left: 1px solid var(--line); }
.receive-showcase__caption strong { display: block; margin-bottom: 2px; color: var(--petrol); font-family: 'Sora'; font-size: 1rem; }
.receive-showcase + .module-grid { margin-top: 78px; }

.module-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.feature-card { position: relative; display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); min-height: 310px; padding: 0; overflow: hidden; border: 1px solid var(--line); border-radius: 20px; background: #fff; box-shadow: var(--shadow); }
.feature-card::after { content: ''; position: absolute; right: -45px; bottom: -45px; width: 120px; height: 120px; border-radius: 50%; background: rgba(16,155,151,.045); }
.feature-card__media { position: relative; z-index: 1; min-height: 100%; overflow: hidden; background: #f6faf9; }
.feature-card__media img { width: 100%; height: 100%; object-fit: cover; }
.feature-card__body { position: relative; z-index: 2; display: flex; flex-direction: column; padding: 25px 23px; }
.feature-card--primary { border-color: rgba(16,155,151,.28); background: linear-gradient(180deg, #fff, #f1fbf9); }
.feature-card--dark { color: #cfe2e0; border-color: transparent; background: var(--petrol); }
.feature-card__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 27px; }
.feature-card__index { color: #9bb1b5; font-size: .78rem; font-weight: 800; letter-spacing: .08em; }
.feature-card__pill { padding: 6px 9px; border-radius: 999px; color: var(--teal-d); background: var(--teal-l); font-size: .62rem; font-weight: 900; letter-spacing: .08em; }
.feature-card--dark .feature-card__pill { color: #a9e8e2; background: rgba(16,155,151,.15); }
.feature-card h3 { margin-bottom: 13px; font-size: 1.14rem; }
.feature-card--dark h3 { color: #fff; }
.feature-card p { color: var(--muted); font-size: .91rem; }
.feature-card--dark p { color: #b7cfcd; }
.feature-card__meta { margin-top: auto; padding-top: 18px; color: var(--teal-d); font-size: .74rem; font-weight: 800; }
.feature-card--dark .feature-card__meta { color: #8dd8d1; }

/* ---------- Areas ---------- */
.area-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 15px; margin-top: 44px; }
.area-card { min-height: 150px; padding: 22px; border: 1px solid var(--line); border-radius: 18px; background: #fff; box-shadow: 0 9px 24px rgba(11,47,57,.06); }
.area-card:first-child { grid-column: span 2; background: linear-gradient(135deg, #f1fbf9, #fff); }
.area-card span { display: inline-flex; align-items: center; justify-content: center; min-width: 42px; height: 32px; margin-bottom: 22px; padding: 0 9px; border-radius: 9px; color: var(--teal-d); background: var(--teal-l); font-size: .72rem; font-weight: 900; }
.area-card strong { display: block; margin-bottom: 5px; color: var(--ink); font-family: 'Sora'; font-size: .92rem; }
.area-card small { color: var(--muted); font-size: .75rem; }

/* ---------- Two columns ---------- */
.two-col { display: grid; grid-template-columns: minmax(0, .94fr) minmax(0, 1.06fr); gap: 58px; align-items: center; }
.two-col--reverse { grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr); }
.two-col__media { border: 1px solid var(--line); box-shadow: var(--shadow-lg); }
.two-col__body { text-align: left; }
.check-list { margin-top: 18px; list-style: none; }
.check-list li { position: relative; padding: 11px 0 11px 34px; border-bottom: 1px solid var(--line); color: var(--ink-2); font-size: .9rem; font-weight: 650; }
.check-list li:last-child { border-bottom: 0; }
.check-list li::before { content: '✓'; position: absolute; top: 12px; left: 0; display: flex; align-items: center; justify-content: center; width: 21px; height: 21px; border-radius: 50%; color: #fff; background: var(--teal); font-size: .66rem; font-weight: 900; }
.check-list--large li { padding-top: 13px; padding-bottom: 13px; }
.check-list--dark li { color: #e2efee; border-color: rgba(255,255,255,.1); }
.check-list--dark li::before { background: #2bb2aa; }
.audience-panel { padding: 42px; border: 1px solid rgba(255,255,255,.12); border-radius: 26px; background: linear-gradient(145deg, rgba(255,255,255,.07), rgba(255,255,255,.025)); box-shadow: 0 28px 60px rgba(0,0,0,.14); }
.audience-panel__label { margin-bottom: 26px; color: #85d8d1; font-size: .7rem; font-weight: 900; letter-spacing: .14em; }
.audience-panel__quote { margin-bottom: 22px; color: #fff; font-family: 'Sora'; font-size: clamp(1.55rem, 3vw, 2.15rem); font-weight: 700; line-height: 1.28; letter-spacing: -.03em; }
.audience-panel__meta { color: #aac5c3; font-size: .9rem; }

/* ---------- Bonus ---------- */
.bonus-card { overflow: hidden; border: 1px solid var(--line); border-radius: 20px; background: #fff; box-shadow: var(--shadow); }
.bonus-card--highlight { border-color: rgba(16,155,151,.34); }
.bonus-card__media { min-height: 215px; border-radius: 0; background: var(--mint); }
.bonus-card__body { padding: 23px 22px 25px; }
.bonus-card__body > span { display: inline-block; margin-bottom: 12px; color: var(--teal-d); font-size: .65rem; font-weight: 900; letter-spacing: .1em; }
.bonus-card h3 { min-height: 48px; margin-bottom: 10px; font-size: .98rem; }
.bonus-card p { color: var(--muted); font-size: .84rem; }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; margin-top: 42px; }
.step { min-height: 185px; padding: 22px 19px; border: 1px solid var(--line); border-radius: 18px; background: #fff; box-shadow: 0 8px 22px rgba(11,47,57,.055); text-align: left; }
.step__num { display: flex; align-items: center; justify-content: center; width: 36px; height: 36px; margin-bottom: 30px; border-radius: 11px; color: var(--teal-d); background: var(--teal-l); font-size: .75rem; font-weight: 900; }
.step h3 { margin-bottom: 7px; font-size: .91rem; }
.step p { color: var(--muted); font-size: .79rem; }

/* ---------- Reviews ---------- */
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 42px; }
.review { position: relative; display: flex; flex-direction: column; min-height: 285px; padding: 27px; overflow: hidden; border: 1px solid var(--line); border-radius: 20px; background: #fff; box-shadow: var(--shadow); text-align: left; }
.review::after { content: '“'; position: absolute; right: 18px; bottom: -30px; color: rgba(16,155,151,.07); font-family: Georgia, serif; font-size: 8rem; line-height: 1; pointer-events: none; }
.review__stars { margin-bottom: 17px; color: #e9a33a; letter-spacing: .08em; font-size: .84rem; }
.review p { position: relative; z-index: 1; margin-bottom: 25px; color: var(--ink); font-size: .94rem; font-weight: 600; }
.review span { color: var(--muted); font-size: .72rem; }
.review__tag { align-self: flex-start; display: inline-flex; margin-bottom: 20px; padding: 7px 11px; border-radius: 999px; color: var(--teal-d) !important; background: var(--teal-l); font-size: .66rem !important; font-weight: 900; letter-spacing: .06em; text-transform: uppercase; }
.review__source { position: relative; z-index: 1; margin-top: auto; padding-top: 15px; border-top: 1px solid var(--line); line-height: 1.45; }

/* ---------- Plans ---------- */
.plans-section { background: linear-gradient(180deg, #fff, #f8fcfb); }
.plans { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; max-width: 970px; margin-top: 46px; }
.plan { position: relative; padding: 34px; border: 1px solid var(--line); border-radius: 26px; background: #fff; box-shadow: var(--shadow); }
.plan--featured { padding-top: 45px; border: 2px solid var(--teal); box-shadow: 0 27px 65px rgba(8,119,115,.16); }
.plan__tag { position: absolute; top: -15px; left: 50%; transform: translateX(-50%); width: max-content; max-width: 88%; padding: 8px 15px; border-radius: 999px; color: #fff; background: var(--petrol); font-size: .68rem; font-weight: 900; letter-spacing: .08em; text-align: center; }
.plan__label { margin-bottom: 13px; color: var(--teal-d); font-size: .69rem; font-weight: 900; letter-spacing: .1em; }
.plan__name { margin-bottom: 8px; color: var(--ink); font-family: 'Sora'; font-size: 1.42rem; font-weight: 800; }
.plan__desc { min-height: 48px; margin-bottom: 22px; color: var(--muted); font-size: .86rem; }
.plan__hero { width: 100%; min-height: 180px; margin-bottom: 22px; border-radius: 18px; }
.plan__price { display: flex; flex-wrap: wrap; align-items: baseline; gap: 8px 12px; margin-bottom: 8px; }
.plan__price s { color: #a7b4b7; font-size: .9rem; }
.plan__price strong { color: var(--petrol); font-family: 'Sora'; font-size: 2.55rem; line-height: 1; letter-spacing: -.05em; }
.plan__price strong span { font-size: 1.15rem; }
.plan__price em { color: var(--muted); font-size: .72rem; font-style: normal; font-weight: 700; }
.plan .check-list { margin: 22px 0 27px; }
.plan .check-list li { font-size: .84rem; }
.plan__release { margin-top: 15px; color: var(--muted); font-size: .72rem; text-align: center; }
.security-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-top: 30px; }
.security-row span { padding: 8px 12px; border: 1px solid var(--line); border-radius: 999px; color: #5e747a; background: #fff; font-size: .73rem; font-weight: 700; }

/* ---------- Guarantee ---------- */
.guarantee { display: grid; grid-template-columns: auto 1fr; gap: 34px; align-items: center; padding: 43px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: #fff; box-shadow: var(--shadow); }
.guarantee__seal { display: flex; align-items: center; justify-content: center; width: 118px; height: 118px; border: 8px solid var(--aqua); border-radius: 50%; color: var(--teal-d); background: var(--mint); font-family: 'Sora'; font-size: 2.7rem; font-weight: 800; box-shadow: inset 0 0 0 2px rgba(16,155,151,.16); }
.guarantee__seal::after { content: 'DIAS'; margin-left: 3px; font-family: 'Inter'; font-size: .58rem; font-weight: 900; letter-spacing: .08em; }

/* ---------- FAQ ---------- */
.faq { max-width: 900px; margin-top: 40px; }
.faq__item { overflow: hidden; margin-bottom: 12px; border: 1px solid var(--line); border-radius: 16px; background: #fff; box-shadow: 0 8px 20px rgba(11,47,57,.045); }
.faq__q { display: flex; align-items: center; justify-content: space-between; gap: 20px; width: 100%; padding: 21px 23px; border: 0; color: var(--ink); background: transparent; font-weight: 800; text-align: left; cursor: pointer; }
.faq__ic { display: flex; align-items: center; justify-content: center; flex: 0 0 30px; width: 30px; height: 30px; border-radius: 50%; color: var(--teal-d); background: var(--teal-l); font-size: 1.2rem; transition: transform .2s ease; }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .28s ease; }
.faq__a p { padding: 0 23px 22px; color: var(--muted); font-size: .9rem; }
.faq__item.is-open .faq__a { max-height: 260px; }
.faq__item.is-open .faq__ic { transform: rotate(45deg); }

/* ---------- Final CTA ---------- */
.final-cta { padding: 82px 0; color: #dcebea; background:
  radial-gradient(600px 260px at 50% 10%, rgba(61,192,182,.18), transparent 70%),
  var(--petrol); }
.final-cta__inner { max-width: 900px; text-align: center; }
.final-cta h2 { margin: 0 auto 17px; color: #fff; font-size: clamp(2rem, 4vw, 3rem); letter-spacing: -.04em; }
.final-cta p { max-width: 720px; margin: 0 auto 28px; color: #b7cecc; }

/* ---------- Footer ---------- */
.footer { padding: 42px 0; border-top: 1px solid #e6efed; background: #f8fbfa; }
.footer__brand { margin-bottom: 12px; color: var(--petrol); font-family: 'Sora'; font-size: 1rem; font-weight: 800; }
.footer__disclaimer { max-width: 900px; margin: 0 auto 12px; color: #859398; font-size: .72rem; line-height: 1.65; }
.footer__copy { color: #9aa7aa; font-size: .7rem; }

/* ---------- Modal ---------- */
.modal { position: fixed; inset: 0; z-index: 1000; display: grid; place-items: center; padding: 20px; visibility: hidden; opacity: 0; transition: opacity .2s ease, visibility .2s ease; }
.modal.is-open { visibility: visible; opacity: 1; }
.modal__overlay { position: absolute; inset: 0; background: rgba(3,22,27,.72); backdrop-filter: blur(7px); }
.modal__card { position: relative; z-index: 2; width: min(510px, 100%); max-height: 90vh; padding: 36px; overflow-y: auto; border: 1px solid rgba(255,255,255,.7); border-radius: 25px; background: #fff; box-shadow: 0 35px 90px rgba(0,0,0,.28); transform: translateY(12px) scale(.98); transition: transform .22s ease; }
.modal.is-open .modal__card { transform: translateY(0) scale(1); }
.modal__close { position: absolute; top: 14px; right: 16px; display: flex; align-items: center; justify-content: center; width: 34px; height: 34px; border: 0; border-radius: 50%; color: var(--muted); background: #edf5f4; font-size: 1.4rem; cursor: pointer; }
.modal__eyebrow { margin-bottom: 11px; color: var(--teal-d); font-size: .68rem; font-weight: 900; letter-spacing: .12em; }
.modal__title { margin: 0 35px 13px 0; font-size: 1.65rem; letter-spacing: -.04em; }
.modal__title span { color: var(--teal-d); }
.modal__text { margin-bottom: 20px; color: var(--muted); font-size: .9rem; }
.modal__price { position: relative; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 13px; margin-bottom: 23px; padding: 18px; border: 1px solid var(--line); border-radius: 17px; background: var(--off); }
.modal__price-from, .modal__price-to { color: var(--muted); font-size: .77rem; font-weight: 700; line-height: 1.35; }
.modal__price-from s { color: #9eaaad; font-size: 1.05rem; }
.modal__price-to strong { color: var(--teal-d); font-family: 'Sora'; font-size: 1.45rem; }
.modal__price-arrow { color: #8ea9a7; font-weight: 900; }
.modal__price-tag { position: absolute; top: -11px; right: 13px; padding: 5px 10px; border-radius: 999px; color: #fff; background: var(--coral); font-size: .66rem; font-weight: 900; }
.modal__list-title { margin-bottom: 8px; color: var(--ink); font-size: .79rem; font-weight: 800; }
.modal__list { margin-bottom: 23px; list-style: none; }
.modal__list li { position: relative; padding: 6px 0 6px 27px; color: var(--ink-2); font-size: .82rem; font-weight: 600; }
.modal__list li::before { content: '✓'; position: absolute; top: 8px; left: 0; display: flex; align-items: center; justify-content: center; width: 18px; height: 18px; border-radius: 50%; color: #fff; background: var(--teal); font-size: .58rem; font-weight: 900; }
.modal__decline { display: block; margin-top: 16px; color: var(--muted); font-size: .8rem; font-weight: 600; text-align: center; text-decoration: underline; text-underline-offset: 3px; }

/* ---------- Responsive ---------- */
@media (max-width: 1050px) {
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .area-grid { grid-template-columns: repeat(3, 1fr); }
  .area-card:first-child { grid-column: span 1; }
  .steps { grid-template-columns: repeat(3, 1fr); }
  .clinical-flow { grid-template-columns: repeat(4, 1fr); }
  .flow-arrow { display: none; }
  .feature-card { grid-template-columns: 1fr; }
  .feature-card__media { aspect-ratio: 1 / 1; min-height: 0; }
}

@media (max-width: 860px) {
  .section { padding: 70px 0; }
  .hero { padding: 60px 0 68px; }
  .hero__title { font-size: clamp(2.25rem, 9vw, 3.5rem); }
  .hero__title .accent { white-space: normal; }
  .exam-strip { grid-template-columns: repeat(2, 1fr); }
  .exam-strip__item:nth-child(2) { border-right: 0; }
  .exam-strip__item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .split-intro, .two-col, .two-col--reverse { grid-template-columns: 1fr; gap: 38px; }
  .challenge-grid { grid-template-columns: 1fr; }
  .challenge-card { min-height: 190px; }
  .challenge-card__num { margin-bottom: 26px; }
  .review-grid { grid-template-columns: 1fr; }
  .plans { grid-template-columns: 1fr; max-width: 620px; }
  .guarantee { grid-template-columns: 1fr; text-align: center; }
  .guarantee__seal { margin: 0 auto; }
  .guarantee .section__title--left, .guarantee .section__sub--left { text-align: center; margin-left: auto; }
}

@media (max-width: 680px) {
  body { padding-bottom: 76px; }
  .container { padding: 0 18px; }
  .section { padding: 58px 0; }
  .topbar__sep { display: none; }
  .topbar__inner { gap: 6px 9px; font-size: .75rem; }
  .hero { padding-top: 48px; }
  .hero__lead { font-size: 1rem; }
  .hero__mockup, .media-slot--hero.is-empty { min-height: 300px; }
  .hero__cta { width: 100%; }
  .hero__cta .btn { width: 100%; }
  .btn { min-height: 54px; }
  .micro-proof { display: grid; grid-template-columns: 1fr 1fr; width: 100%; gap: 9px; text-align: left; }
  .micro-proof span { padding: 9px 10px; border: 1px solid var(--line); border-radius: 12px; background: rgba(255,255,255,.72); font-size: .73rem; }
  .gallery { margin: 34px 0; }
  .gallery__item { width: 190px; }
  .gallery__track { gap: 12px; animation-duration: 48s; }
  .gallery__item.is-empty { min-height: 237px; }
  .grid--4, .grid--3, .area-grid, .steps { grid-template-columns: 1fr; }
  .module-grid { gap: 14px; }
  .module-grid { grid-template-columns: 1fr; }
  .receive-showcase { margin-top: 32px; }
  .receive-showcase__image { aspect-ratio: 1 / 1; border-radius: 20px; }
  .receive-showcase__image img { object-position: center; }
  .receive-showcase__caption { position: static; grid-template-columns: 1fr; margin-top: 12px; border-radius: 16px; box-shadow: var(--shadow); }
  .receive-showcase__caption span { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 12px 16px; text-align: left; }
  .receive-showcase__caption span + span { border-top: 1px solid var(--line); border-left: 0; }
  .receive-showcase__caption strong { margin: 0; font-size: .88rem; }
  .receive-showcase + .module-grid { margin-top: 28px; }
  .feature-card { min-height: 0; }
  .feature-card__body { min-height: 265px; padding: 24px 22px; }
  .clinical-flow { grid-template-columns: 1fr 1fr; gap: 12px; }
  .flow-step { min-height: 160px; }
  .bonus-card h3 { min-height: 0; }
  .plan { padding: 27px 22px; }
  .plan--featured { padding-top: 39px; }
  .plan__price strong { font-size: 2.25rem; }
  .guarantee { padding: 30px 22px; }
  .guarantee__seal { width: 100px; height: 100px; }
  .final-cta { padding: 64px 0; }
  .modal__card { padding: 33px 22px 24px; }
  .mobile-cta { position: fixed; z-index: 900; right: 0; bottom: 0; left: 0; display: flex; align-items: center; gap: 12px; padding: 10px 16px calc(10px + env(safe-area-inset-bottom)); border-top: 1px solid var(--line); background: rgba(255,255,255,.94); box-shadow: 0 -8px 28px rgba(8,43,51,.12); backdrop-filter: blur(12px); }
  .mobile-cta__price { flex: 0 0 auto; color: var(--muted); font-size: .66rem; line-height: 1.2; }
  .mobile-cta__price strong { display: block; color: var(--petrol); font-family: 'Sora'; font-size: 1.14rem; }
  .mobile-cta .btn { flex: 1; min-height: 50px; padding: 12px 14px; font-size: .8rem; }
}

@media (min-width: 681px) { .mobile-cta { display: none; } }

@media (max-width: 460px) {
  .hero__title { font-size: 2.35rem; }
  .section__title { font-size: 1.9rem; }
  .exam-strip__item { padding: 13px 10px; }
  .micro-proof { grid-template-columns: 1fr; }
  .clinical-flow { grid-template-columns: 1fr; }
  .flow-step { min-height: 145px; }
  .flow-step span { margin-bottom: 18px; }
  .gallery__item { width: 172px; }
  .gallery__item.is-empty { min-height: 215px; }
  .audience-panel { padding: 30px 24px; }
  .plan__tag { font-size: .6rem; }
  .modal__price { grid-template-columns: 1fr auto 1fr; padding: 15px 12px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
}
