:root {
  --blue-900: #0b3a66;
  --blue-700: #0c78cc;
  --blue-500: #2e91dd;
  --blue-300: #77bbf0;
  --blue-100: #eaf5fd;
  --purple: #6060eb;
  --purple-100: #ededfd;
  --yellow: #ffd34d;
  --yellow-700: #febf00;
  --orange: #feb34d;
  --orange-700: #ff9200;
  --ink: #122340;
  --slate: #5b6b85;
  --paper: #fff;
  --cloud: #f5f9fd;
  --line: #e1ebf5;
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --shadow-soft: 0 20px 45px -22px rgba(11, 58, 102, 0.28);
  --shadow-card: 0 14px 30px -18px rgba(11, 58, 102, 0.22);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: "Manrope", sans-serif;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4, .display { margin: 0; font-family: "Baloo 2", sans-serif; font-weight: 700; line-height: 1.08; }
p { margin: 0; color: var(--slate); line-height: 1.6; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
img { display: block; max-width: 100%; }
button { border: 0; background: none; font-family: inherit; cursor: pointer; }
section { position: relative; }
.wrap { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px; padding: 7px 14px 7px 10px;
  border-radius: 999px; color: var(--blue-700); background: var(--blue-100);
  font-size: 12.5px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase;
}
.eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--yellow-700); }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 15px 28px; border-radius: 999px; font-size: 15px; font-weight: 800;
  white-space: nowrap; transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.btn-primary { color: #fff; background: var(--blue-500); box-shadow: 0 14px 26px -12px rgba(46, 145, 221, .65); }
.btn-primary:hover { color: #fff; background: var(--blue-700); transform: translateY(-2px); }
.btn-ghost { color: var(--blue-700); border: 2px solid var(--blue-100); background: #fff; }
.btn-ghost:hover { color: var(--blue-700); border-color: var(--blue-300); transform: translateY(-2px); }
.btn-block { width: 100%; }

/* Header */
.prototype-header { position: sticky; top: 0; z-index: 1060; border-bottom: 1px solid var(--line); background: rgba(255,255,255,.92); backdrop-filter: blur(10px); }
.nav { display: flex; align-items: center; justify-content: space-between; max-width: 1180px; margin: 0 auto; padding: 14px 24px; }
.brand { display: flex; align-items: center; gap: 10px; }
.brand img { width: 36px; height: 36px; border-radius: 10px; object-fit: contain; }
.brand span { color: var(--blue-900); font-family: "Baloo 2", sans-serif; font-size: 16.5px; font-weight: 700; }
.nav-links { display: flex; align-items: center; gap: 22px; }
.nav-links a { color: var(--ink); opacity: .72; font-size: 13px; font-weight: 600; letter-spacing: .01em; transition: opacity .15s, color .15s; }
.nav-links a:hover { color: var(--blue-700); opacity: 1; }
.nav-cta { display: flex; align-items: center; gap: 8px; }
.nav-cta .btn { padding: 9px 18px; box-shadow: none; font-size: 12.5px; font-weight: 700; }
.nav-cta .btn-primary { box-shadow: 0 10px 18px -10px rgba(46,145,221,.55); }
.nav-cta .btn-ghost { border-width: 1.5px; }
.burger { display: none; width: 38px; height: 38px; align-items: center; justify-content: center; border-radius: 11px; background: var(--blue-100); }
.burger span, .burger span::before, .burger span::after { content: ""; display: block; position: relative; width: 18px; height: 2.4px; border-radius: 2px; background: var(--blue-900); transition: transform .2s, top .2s; }
.burger span::before { position: absolute; top: -6px; }
.burger span::after { position: absolute; top: 6px; }
.burger.open span { background: transparent; }
.burger.open span::before { top: 0; transform: rotate(45deg); }
.burger.open span::after { top: 0; transform: rotate(-45deg); }

/* Hero */
.hero { overflow: hidden; padding: 64px 0 40px; background: linear-gradient(180deg, var(--blue-100) 0%, #fff 78%); }
.hero .wrap { display: grid; grid-template-columns: 1.05fr .95fr; gap: 36px; align-items: center; }
.hero h1 { color: var(--blue-900); font-size: clamp(34px, 4.6vw, 54px); letter-spacing: -.01em; }
.hero h1 em { color: var(--blue-500); font-style: normal; }
.hero p.lead { max-width: 480px; margin-top: 18px; font-size: 18px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.hero-art { position: relative; min-width: 0; }
.hero-blob { position: absolute; z-index: 0; inset: -14% -10% -8% -6%; background: radial-gradient(circle at 25% 20%, var(--yellow) 0, rgba(255,211,77,0) 45%), radial-gradient(circle at 80% 75%, var(--purple-100) 0, rgba(237,237,253,0) 55%); filter: blur(2px); }
.hero-card { position: relative; z-index: 1; overflow: hidden; padding: 20px; border-radius: 32px; background: var(--blue-500); box-shadow: var(--shadow-soft); }
.hero-slides { position: relative; overflow: hidden; aspect-ratio: 900 / 711; border-radius: 22px; background: #dcedfb; }
.hero-slides img { position: absolute; inset: 0; width: 100%; height: 100%; border-radius: 22px; object-fit: contain; opacity: 0; transform: scale(1.01); transition: opacity .5s ease, transform .7s ease; }
.hero-slides img.is-active { opacity: 1; transform: scale(1); }
.hero-brand-fix {
  position: absolute;
  z-index: 3;
  top: 0;
  right: 0;
  bottom: 0;
  display: flex;
  width: 31%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 13px;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 115% 105%, #78b6e4 0 34%, transparent 35%),
    linear-gradient(135deg, #579dd7, #4d94cf);
}
.hero-brand-fix::before {
  content: "";
  position: absolute;
  top: -52px;
  right: -42px;
  width: 128px;
  height: 128px;
  border-radius: 50%;
  background: rgba(125, 187, 232, .75);
}
.hero-brand-fix img {
  position: relative;
  inset: auto;
  z-index: 1;
  width: 76px;
  height: 72px;
  border-radius: 0;
  object-fit: contain;
  opacity: 1;
  transform: none;
}
.hero-brand-fix strong {
  position: relative;
  z-index: 1;
  font-family: "Manrope", sans-serif;
  font-size: clamp(21px, 2.7vw, 35px);
  font-weight: 500;
  line-height: 1.1;
  text-align: center;
}
.hero-arrow { position: absolute; z-index: 4; top: 50%; display: grid; width: 38px; height: 38px; place-items: center; border-radius: 50%; color: var(--blue-900); background: rgba(255,255,255,.9); transform: translateY(-50%); }
.hero-arrow.prev { left: 30px; }
.hero-arrow.next { right: 30px; }
.hero-dots { position: absolute; z-index: 4; bottom: 28px; left: 50%; display: flex; gap: 6px; transform: translateX(-50%); }
.hero-dots button { width: 8px; height: 8px; padding: 0; border-radius: 99px; background: rgba(255,255,255,.55); }
.hero-dots button.active { width: 24px; background: #fff; }
.hero-badge { position: absolute; z-index: 5; display: flex; align-items: center; gap: 12px; padding: 14px 18px; border-radius: 18px; background: #fff; box-shadow: var(--shadow-card); }
.hero-badge.b1 { top: -18px; left: -18px; }
.hero-badge.b2 { right: -14px; bottom: -18px; }
.hero-badge .ic { display: flex; width: 38px; height: 38px; align-items: center; justify-content: center; border-radius: 11px; font-size: 18px; }
.hero-badge b { display: block; color: var(--blue-900); font-family: "Baloo 2", sans-serif; font-size: 15px; }
.hero-badge span { color: var(--slate); font-size: 12px; font-weight: 600; }

/* Counters */
.trust-strip { padding: 30px 0; background: var(--blue-900); }
.counters-row { display: flex; align-items: center; justify-content: center; gap: 36px; flex-wrap: wrap; }
.counter { display: flex; min-width: 120px; flex-direction: column; align-items: center; text-align: center; }
.counter b { color: #fff; font-family: "Baloo 2", sans-serif; font-size: 32px; font-weight: 700; line-height: 1; }
.counter span { margin-top: 6px; color: #9fbbd6; font-size: 12px; font-weight: 600; letter-spacing: .02em; }
.counter-sep { width: 1px; height: 34px; background: rgba(255,255,255,.14); }

/* Sections and about */
.sec { padding: 88px 0; }
.sec-alt { background: var(--cloud); }
.sec-head { max-width: 640px; margin: 0 auto 48px; text-align: center; }
.sec-head h2 { margin-top: 14px; color: var(--blue-900); font-size: clamp(28px, 3.4vw, 40px); }
.sec-head p { margin-top: 14px; font-size: 16.5px; }
.about-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 56px; align-items: center; }
.trinity-wrap { position: relative; width: 100%; max-width: 420px; margin: 0 auto; }
.about-copy h2 { margin-top: 16px; color: var(--blue-900); font-size: clamp(26px,3.2vw,36px); }
.about-copy > p { max-width: 520px; margin-top: 14px; font-size: 16px; }
.about-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 28px; }
.about-card { padding: 22px; border: 1px solid var(--line); border-radius: var(--radius-md); background: #fff; box-shadow: var(--shadow-card); }
.about-card .ic { display: flex; width: 44px; height: 44px; align-items: center; justify-content: center; margin-bottom: 14px; border-radius: 12px; font-size: 20px; }
.about-card h4 { margin-bottom: 6px; color: var(--blue-900); font-family: "Baloo 2", sans-serif; font-size: 16.5px; }
.about-card p { font-size: 13.6px; }

/* Plans */
.plans-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.plans-grid.count-3 { grid-template-columns: repeat(3, 1fr); }
.plans-grid.count-2 { grid-template-columns: repeat(2, 1fr); }
.prototype-plan-card { position: relative; display: flex; flex-direction: column; gap: 16px; padding: 26px 22px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: #fff; box-shadow: var(--shadow-card); transition: transform .2s ease, box-shadow .2s ease; }
.prototype-plan-card:hover { transform: translateY(-6px); box-shadow: 0 26px 46px -20px rgba(11,58,102,.32); }
.prototype-plan-card.featured { border: 2px solid var(--blue-500); }
.prototype-plan-card.oro { border-color: var(--blue-900); background: var(--blue-900); }
.plan-ribbon { position: absolute; top: -13px; left: 22px; padding: 6px 12px; border-radius: 999px; color: var(--blue-900); background: var(--yellow); box-shadow: 0 8px 16px -8px rgba(255,191,0,.7); font-size: 11.5px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.plan-tag { font-size: 11.5px; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.prototype-plan-card h3 { margin-top: 2px; color: var(--blue-900); font-size: 21px; }
.prototype-plan-card.oro h3 { color: #fff; }
.plan-price { display: flex; align-items: baseline; gap: 6px; margin-top: 2px; }
.plan-price b { color: var(--ink); font-family: "Baloo 2", sans-serif; font-size: 26px; }
.plan-price span { color: var(--slate); font-size: 12.5px; font-weight: 700; }
.prototype-plan-card.oro .plan-price b { color: #fff; }
.prototype-plan-card.oro .plan-price span { color: #afc6de; }
.plan-list { display: flex; flex-direction: column; gap: 10px; }
.plan-list li { display: flex; align-items: flex-start; gap: 9px; color: var(--ink); font-size: 13.6px; }
.prototype-plan-card.oro .plan-list li { color: #e5f1fc; }
.plan-list .chk { display: flex; width: 18px; height: 18px; flex: none; align-items: center; justify-content: center; margin-top: 1px; border-radius: 50%; color: var(--blue-700); background: var(--blue-100); font-size: 11px; }
.prototype-plan-card.oro .chk { color: var(--yellow); background: rgba(255,211,77,.2); }
.prototype-plan-card details { margin-top: 2px; }
.prototype-plan-card summary { display: flex; align-items: center; gap: 6px; padding: 4px 0; color: var(--blue-700); font-size: 13px; font-weight: 800; list-style: none; cursor: pointer; }
.prototype-plan-card.oro summary { color: var(--yellow); }
.prototype-plan-card summary::-webkit-details-marker { display: none; }
.prototype-plan-card summary::after { content: "+"; margin-left: auto; font-size: 16px; }
.prototype-plan-card details[open] summary::after { content: "-"; }
.plan-more { display: flex; flex-direction: column; gap: 8px; margin-top: 10px; padding-top: 12px; border-top: 1px dashed var(--line); }
.plan-more li { position: relative; padding-left: 14px; color: var(--slate); font-size: 12.8px; }
.prototype-plan-card.oro .plan-more li { color: #c9def3; }
.plan-more li::before { content: "•"; position: absolute; left: 0; color: var(--blue-300); }
.plan-cta { margin-top: auto; }
.prototype-plan-card.oro .plan-cta { color: var(--blue-900); border: 0; background: var(--yellow); }
.plans-note { margin-top: 30px; text-align: center; font-size: 13.5px; }

/* Affiliation */
.afiliate-panel { position: relative; display: grid; overflow: hidden; grid-template-columns: .85fr 1.15fr; gap: 48px; align-items: center; padding: 56px; border-radius: 36px; color: #fff; background: var(--blue-900); }
.afiliate-panel::before { content: ""; position: absolute; top: -160px; right: -140px; width: 420px; height: 420px; border-radius: 50%; background: radial-gradient(circle, rgba(255,211,77,.18), transparent 70%); }
.afiliate-illustration { width: 108px; margin-bottom: 18px; }
.afiliate-copy .eyebrow { color: #ffe9a8; background: rgba(255,255,255,.1); }
.afiliate-copy h2 { margin-top: 16px; color: #fff; font-size: clamp(26px,3vw,34px); }
.afiliate-copy p { margin-top: 14px; color: #c9def3; font-size: 15.5px; }
.afiliate-copy ul { display: flex; flex-direction: column; gap: 12px; margin-top: 24px; }
.afiliate-copy li { display: flex; align-items: center; gap: 10px; color: #e5f1fc; font-size: 14px; }
.afiliate-copy li .chk { display: flex; width: 20px; height: 20px; flex: none; align-items: center; justify-content: center; border-radius: 50%; color: var(--yellow); background: rgba(255,211,77,.22); font-size: 11px; }
.form-card { position: relative; z-index: 1; padding: 32px; border-radius: 26px; color: var(--ink); background: #fff; box-shadow: 0 30px 60px -20px rgba(0,0,0,.4); }
.form-card h3 { margin-bottom: 4px; color: var(--blue-900); font-size: 19px; }
.form-card p.hint { margin-bottom: 20px; font-size: 13px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.field.full { grid-column: 1 / -1; }
.field label { color: var(--blue-900); font-size: 12.5px; font-weight: 800; }
.field input, .field select { padding: 12px 14px; border: 1.5px solid var(--line); border-radius: 12px; color: var(--ink); background: var(--cloud); font-family: inherit; font-size: 14px; }
.field input:focus, .field select:focus { border-color: var(--blue-500); outline: 2px solid var(--blue-500); outline-offset: 1px; }
.form-foot { margin-top: 6px; color: var(--slate); font-size: 11.5px; }

/* Medical directory */
.cartilla-head-flex { display: flex; align-items: center; justify-content: center; gap: 36px; margin-bottom: 48px; }
.cartilla-illustration { width: 150px; flex: none; }
.cartilla-panel { padding: 34px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: #fff; box-shadow: var(--shadow-card); }
.search-row { display: grid; grid-template-columns: 1.3fr 1fr 1fr auto; gap: 12px; align-items: end; }
.search-row .field { margin-bottom: 0; }
.cartilla-results { display: flex; flex-direction: column; gap: 12px; margin-top: 26px; }
.result-row { display: flex; align-items: center; gap: 16px; padding: 16px 18px; border: 1px solid var(--line); border-radius: 16px; transition: border-color .15s, background .15s; }
.result-row:hover { border-color: var(--blue-300); background: var(--blue-100); }
.result-ic { display: flex; width: 46px; height: 46px; flex: none; align-items: center; justify-content: center; border-radius: 13px; font-size: 20px; }
.result-info b { display: block; color: var(--blue-900); font-family: "Baloo 2", sans-serif; font-size: 15px; }
.result-info span { color: var(--slate); font-size: 12.8px; }
.result-tag { margin-left: auto; padding: 6px 12px; border-radius: 999px; color: var(--blue-700); background: var(--blue-100); font-size: 11.5px; font-weight: 800; white-space: nowrap; }
.cartilla-note { margin-top: 20px; color: var(--slate); text-align: center; font-size: 12.5px; }

/* FAQ */
.faq-list { display: flex; max-width: 820px; margin: 0 auto; flex-direction: column; gap: 12px; }
.faq-item { overflow: hidden; border: 1px solid var(--line); border-radius: 16px; background: #fff; }
.faq-item summary { display: flex; align-items: center; gap: 14px; padding: 20px 22px; color: var(--blue-900); font-family: "Baloo 2", sans-serif; font-size: 16px; font-weight: 600; list-style: none; cursor: pointer; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .plus { display: flex; width: 30px; height: 30px; flex: none; align-items: center; justify-content: center; margin-left: auto; border-radius: 50%; color: var(--blue-700); background: var(--blue-100); font-size: 16px; transition: transform .2s; }
.faq-item[open] summary .plus { transform: rotate(45deg); }
.faq-item .faq-a { padding: 0 22px 22px; font-size: 14.5px; }

/* Portal promotion */
.app-panel { display: grid; overflow: hidden; grid-template-columns: 1.1fr .9fr; border-radius: 36px; background: linear-gradient(120deg,var(--blue-500),var(--blue-700)); }
.app-copy { padding: 56px; color: #fff; }
.app-copy .eyebrow { color: #ffe9a8; background: rgba(255,255,255,.14); }
.app-copy h2 { margin-top: 16px; color: #fff; font-size: clamp(26px,3vw,32px); }
.app-copy p { max-width: 420px; margin-top: 12px; color: #dcebfa; font-size: 15px; }
.app-feat { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 26px; }
.app-feat div { padding: 14px 16px; border-radius: 14px; background: rgba(255,255,255,.1); }
.app-feat b { display: block; margin-bottom: 2px; font-family: "Baloo 2", sans-serif; font-size: 14.5px; }
.app-feat span { color: #cfe4f8; font-size: 12px; }
.store-badges { display: flex; gap: 12px; margin-top: 28px; }
.store-badge { display: flex; align-items: center; gap: 10px; padding: 11px 18px; border-radius: 14px; color: #fff; background: #0a2440; }
.store-badge span { display: block; }
.store-badge .s1 { color: #b9cbe0; font-size: 10px; }
.store-badge .s2 { font-family: "Baloo 2", sans-serif; font-size: 15px; font-weight: 800; }
.app-phone-wrap { position: relative; display: flex; align-items: flex-end; justify-content: center; }
.app-phone { width: 230px; margin-top: 40px; padding: 12px; border-radius: 34px; background: #0a1f38; box-shadow: 0 30px 60px -18px rgba(0,0,0,.5); }
.app-phone .screen { height: 100%; padding: 18px 14px; border-radius: 24px; background: #fff; }
.app-phone .screen .row { display: flex; align-items: center; justify-content: space-between; margin: 0 0 16px; }
.app-phone .screen .row b { color: var(--blue-900); font-family: "Baloo 2", sans-serif; font-size: 14px; }
.app-phone .card-mini { margin-bottom: 10px; padding: 12px; border-radius: 14px; background: var(--blue-100); }
.app-phone .card-mini b { display: block; color: var(--blue-900); font-size: 12.5px; }
.app-phone .card-mini span { color: var(--slate); font-size: 10.5px; }
.app-phone .cred { margin-top: 6px; padding: 14px; border-radius: 14px; color: #fff; background: linear-gradient(120deg,var(--blue-500),var(--purple)); }
.app-phone .cred b { display: block; opacity: .8; font-size: 11px; letter-spacing: .06em; text-transform: uppercase; }
.app-phone .cred span { display: block; margin-top: 6px; font-family: "Baloo 2", sans-serif; font-size: 15px; }

/* Branches */
.branches-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.branch-card { padding: 26px; border: 1px solid var(--line); border-radius: var(--radius-md); background: #fff; box-shadow: var(--shadow-card); }
.branch-card .tag { color: var(--blue-700); font-size: 11.5px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.branch-card h4 { margin-top: 6px; color: var(--blue-900); font-size: 19px; }
.branch-card p { margin-top: 8px; font-size: 14px; }
.branch-card .hrs { margin-top: 14px; padding-top: 12px; border-top: 1px dashed var(--line); color: var(--slate); font-size: 12.5px; }

/* Footer */
.prototype-footer { padding: 64px 0 28px; color: #cfe0f2; background: var(--blue-900); }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 36px; }
.foot-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.foot-brand img { width: 38px; height: 38px; border-radius: 10px; object-fit: contain; }
.foot-brand span { color: #fff; font-family: "Baloo 2", sans-serif; font-size: 18px; font-weight: 800; }
.foot-grid p { max-width: 280px; color: #9fbbd6; font-size: 13.5px; }
.foot-col h5 { margin-bottom: 14px; color: #fff; font-family: "Baloo 2", sans-serif; font-size: 14.5px; }
.foot-col ul { display: flex; flex-direction: column; gap: 10px; }
.foot-col a { color: #afc6de; font-size: 13.5px; transition: color .15s; }
.foot-col a:hover { color: #fff; }
.foot-social { display: flex; gap: 10px; margin-top: 16px; }
.foot-social a { display: flex; width: 36px; height: 36px; align-items: center; justify-content: center; border-radius: 10px; color: #cfe0f2; background: rgba(255,255,255,.08); transition: background .15s,color .15s; }
.foot-social a:hover { color: #fff; background: var(--blue-500); }
.foot-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 10px; margin-top: 48px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.12); color: #82a0c0; font-size: 12.5px; }

/* Emergency menu */
.emg-fab { position: fixed; right: 22px; bottom: 22px; z-index: 1080; display: flex; flex-direction: column; align-items: flex-end; gap: 12px; }
.emg-menu { display: flex; flex-direction: column; gap: 10px; opacity: 0; pointer-events: none; transform: translateY(10px) scale(.96); transition: opacity .18s ease,transform .18s ease; }
.emg-fab.open .emg-menu { opacity: 1; pointer-events: auto; transform: translateY(0) scale(1); }
.emg-option { display: flex; min-width: 240px; align-items: center; gap: 12px; padding: 12px 16px 12px 12px; border-radius: 16px; background: #fff; box-shadow: 0 16px 30px -12px rgba(11,58,102,.4); }
.emg-option .ic { display: flex; width: 40px; height: 40px; flex: none; align-items: center; justify-content: center; border-radius: 12px; font-size: 18px; }
.emg-option b { display: block; color: var(--blue-900); font-family: "Baloo 2", sans-serif; font-size: 13.5px; }
.emg-option span { color: var(--slate); font-size: 12.5px; }
.emg-btn { position: relative; display: flex; width: 64px; height: 64px; align-items: center; justify-content: center; border-radius: 50%; color: #fff; background: #e4483a; box-shadow: 0 16px 30px -10px rgba(228,72,58,.6); font-size: 26px; }
.emg-btn .pulse { position: absolute; inset: -8px; border: 3px solid rgba(228,72,58,.45); border-radius: 50%; animation: prototype-pulse 1.8s infinite; }
@keyframes prototype-pulse { 0% { opacity: 1; transform: scale(.9); } 100% { opacity: 0; transform: scale(1.35); } }
.emg-label { position: absolute; top: 50%; right: 74px; padding: 7px 12px; border-radius: 10px; color: #fff; background: var(--ink); opacity: 0; pointer-events: none; font-size: 12.5px; font-weight: 800; white-space: nowrap; transform: translateY(-50%); transition: opacity .15s; }
.emg-fab:not(.open) .emg-btn:hover .emg-label { opacity: 1; }

@media (max-width: 1100px) {
  .nav-links { gap: 13px; }
  .nav-links a { font-size: 12px; }
}
@media (max-width: 980px) {
  .nav { position: relative; }
  .nav-links { position: absolute; top: 65px; right: 0; left: 0; display: none; flex-direction: column; gap: 18px; padding: 20px 24px; border-bottom: 1px solid var(--line); background: #fff; box-shadow: 0 16px 30px -20px rgba(11,58,102,.3); }
  .nav-links.open { display: flex; }
  .nav-cta .btn-ghost { display: none; }
  .burger { display: flex; }
  .hero .wrap { grid-template-columns: 1fr; }
  .hero-art { order: -1; width: min(100%,420px); margin: 0 auto; }
  .about-grid { grid-template-columns: 1fr; }
  .plans-grid { grid-template-columns: 1fr 1fr; }
  .afiliate-panel { grid-template-columns: 1fr; padding: 36px 24px; }
  .form-grid { grid-template-columns: 1fr; }
  .cartilla-head-flex { flex-direction: column; text-align: center; }
  .cartilla-head-flex .sec-head { text-align: center; }
  .search-row { grid-template-columns: 1fr 1fr; }
  .search-row .btn { grid-column: 1 / -1; }
  .app-panel { grid-template-columns: 1fr; }
  .app-phone-wrap { display: none; }
  .branches-grid { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 620px) {
  .wrap { padding: 0 16px; }
  .nav { padding: 12px 16px; }
  .brand span { font-size: 15px; }
  .nav-cta .btn-primary { display: none; }
  .sec { padding: 60px 0; }
  .hero { padding: 38px 0 44px; }
  .hero-card { padding: 12px; border-radius: 24px; }
  .hero-slides { border-radius: 16px; }
  .hero-slides img { border-radius: 16px; }
  .hero-badge { padding: 10px 12px; border-radius: 14px; }
  .hero-badge.b1 { top: -10px; left: -6px; }
  .hero-badge.b2 { right: -6px; bottom: -10px; }
  .hero-badge .ic { width: 32px; height: 32px; font-size: 15px; }
  .hero-badge b { font-size: 12px; }
  .hero-badge span { font-size: 10px; }
  .hero-brand-fix { width: 32%; gap: 7px; }
  .hero-brand-fix img { width: 44px; height: 42px; }
  .hero-brand-fix strong { font-size: clamp(15px, 5vw, 22px); }
  .hero-actions { display: grid; grid-template-columns: 1fr; }
  .plans-grid { grid-template-columns: 1fr; }
  .about-cards { grid-template-columns: 1fr; }
  .app-copy { padding: 36px 24px; }
  .app-feat { grid-template-columns: 1fr; }
  .store-badges { flex-direction: column; }
  .foot-grid { grid-template-columns: 1fr; }
  .counters-row { gap: 26px 30px; }
  .counter { min-width: 38%; }
  .counter-sep { display: none; }
  .result-row { align-items: flex-start; }
  .result-tag { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .emg-btn .pulse { animation: none; }
  .hero-slides img { transition: none; }
}
