:root {
  --navy: #25306f;
  --navy-dark: #16204f;
  --navy-deep: #1d3562;
  --cyan: #04aebf;
  --cyan-dark: #008b9a;
  --green: #2fa765;
  --orange: #f6a12a;
  --orange-dark: #e58e10;
  --yellow: #efca2e;
  --coral: #ec604f;
  --whatsapp: #26d266;
  --ink: #1f2937;
  --ink-2: #6b6e71;
  /* ratio 4.6:1 sobre blanco ✅ (era #7a7c7e que falla WCAG AA) */
  --muted: #5a6170;
  /* ratio 4.7:1 sobre blanco ✅ (era #667085) */
  --line: #d9e1ea;
  --soft: #f3f7fb;
  --panel-2: #e2e9f3;
  --rose: #fbe6e3;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(31, 41, 55, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  background: var(--white);
  line-height: 1.55;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 28px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 96px;
  padding: 8px clamp(18px, 5vw, 72px);
  background: var(--white);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.25s ease;
}

.site-header.is-scrolled {
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.10);
}

.brand,
.footer-brand-logos {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: var(--white);
  font-weight: 700;
  font-style: italic;
  letter-spacing: 0;
  border: 2px solid rgba(255, 255, 255, 0.75);
  border-radius: 50%;
  background: var(--navy);
}

.brand .brand-mark {
  border-color: var(--navy);
  color: var(--navy);
  background: transparent;
}

.brand-logo {
  width: clamp(64px, 5.25vw, 78px);
  height: clamp(64px, 5.25vw, 78px);
  object-fit: contain;
}

.footer-logo {
  width: clamp(88px, 7vw, 108px);
  height: clamp(88px, 7vw, 108px);
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.96;
}

.footer-brand-logos {
  gap: 18px;
  flex-wrap: wrap;
}

.footer-brand-plus {
  color: rgba(255, 255, 255, 0.44);
  font-size: 1.35rem;
  font-weight: 300;
  line-height: 1;
}

.footer-partner-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(168px, 14vw, 210px);
  height: clamp(72px, 6vw, 88px);
  text-decoration: none;
}

.footer-partner-logo img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.footer-association {
  max-width: 320px;
  margin-top: -4px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 14px;
  line-height: 1.55;
}

.brand-text {
  color: var(--navy);
  max-width: 178px;
  font-weight: 900;
  text-transform: uppercase;
  font-size: clamp(0.875rem, 0.95vw, 0.96rem);
  line-height: 1.08;
  letter-spacing: 0.08em;
}

.brand-inline {
  display: inline-flex;
  align-items: center;
  gap: 0.35em;
  color: var(--navy);
  font-weight: 900;
  white-space: nowrap;
}

.brand-inline::before {
  content: "";
  display: inline-block;
  width: 0.72em;
  height: 0.72em;
  border-radius: 50%;
  background: var(--navy);
}

.brand-inline--plain {
  gap: 0;
}

.brand-inline--plain::before {
  content: none;
}

.brand-inline--spaced {
  padding-left: 0.18em;
}

.brand-inline--hero,
.hero .brand-inline {
  color: var(--white);
}

.brand-inline--hero::before,
.hero .brand-inline::before {
  background: var(--white);
}

.btn .brand-inline,
.brand-inline--button {
  color: currentColor;
}

.btn .brand-inline::before,
.brand-inline--button::before {
  background: currentColor;
}

.site-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-nav a {
  padding: 10px 14px;
  color: rgba(37, 48, 111, 0.65);
  font-weight: 700;
  font-size: 0.95rem;
}

.site-nav a[aria-current="page"],
.site-nav a:hover {
  color: var(--navy);
}

/* Nav dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown>a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.nav-dropdown>a::after {
  content: "";
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid currentColor;
  opacity: 0.6;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  min-width: 210px;
  padding: 8px 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 32px rgba(31, 41, 55, 0.14);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  z-index: 60;
}

.nav-dropdown-menu::before {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-bottom: 7px solid var(--white);
  filter: drop-shadow(0 -1px 0 var(--line));
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu a {
  display: block;
  padding: 9px 18px;
  color: rgba(37, 48, 111, 0.75);
  font-weight: 700;
  font-size: 0.85rem;
  white-space: nowrap;
  transition: background 0.15s, color 0.15s;
}

.nav-dropdown-menu a:hover {
  background: var(--soft);
  color: var(--navy);
}

/* Mobile: show dropdown inline when nav is open */
.site-nav.is-open .nav-dropdown-menu {
  position: static;
  transform: none;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  box-shadow: none;
  border: none;
  border-left: 2px solid var(--line);
  border-radius: 0;
  padding: 4px 0 4px 8px;
  margin: 2px 0 2px 14px;
  min-width: auto;
  background: transparent;
}

.site-nav.is-open .nav-dropdown-menu::before {
  display: none;
}

.site-nav.is-open .nav-dropdown>a::after {
  display: none;
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 11px 18px;
  border: 0;
  border-radius: 6px;
  font: inherit;
  font-size: 1rem;
  font-weight: 800;
  cursor: pointer;
}

.btn-primary {
  color: var(--white);
  background: var(--cyan);
}

.btn-primary:hover {
  background: var(--cyan-dark);
}

.header-cta {
  color: var(--ink);
  background: var(--orange);
  border-radius: 999px;
}

.header-cta:hover {
  background: var(--orange-dark);
}

.btn-secondary {
  color: var(--navy);
  background: var(--white);
}

.btn-ghost {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border: 2px solid rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(4px);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.8);
}

.btn-outline {
  color: var(--navy);
  background: transparent;
  border: 2px solid var(--navy);
}

.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
}

.btn svg,
.header-cta svg,
.service-card svg,
.trust-list svg,
.value-grid svg,
.contact-methods svg {
  width: 19px;
  height: 19px;
  flex-shrink: 0;
}

.nav-toggle {
  display: none;
  place-items: center;
  width: 44px;
  height: 44px;
  color: var(--navy);
  border: 1px solid var(--line);
  border-radius: 6px;
  background: transparent;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.wa-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  height: 44px;
  padding: 0 16px 0 12px;
  border-radius: 999px;
  background: var(--whatsapp);
  color: var(--white);
  box-shadow: 0 4px 12px rgba(38, 210, 102, 0.4);
  transition: transform 0.15s;
  flex-shrink: 0;
  font-size: 0.94rem;
  font-weight: 700;
  white-space: nowrap;
}

.wa-pill:hover {
  transform: scale(1.04);
}

.wa-pill svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.hero {
  position: relative;
  min-height: min(75vh, 660px);
  display: grid;
  align-items: center;
  overflow: hidden;
}

.hero-media,
.hero-media img,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-shade {
  background: linear-gradient(160deg,
      rgba(22, 32, 79, 0.92) 0%,
      rgba(22, 32, 79, 0.62) 35%,
      rgba(22, 32, 79, 0.45) 55%,
      rgba(22, 32, 79, 0.78) 80%,
      rgba(22, 32, 79, 0.95) 100%);
}

.hero-content {
  position: relative;
  width: min(780px, 100%);
  padding: clamp(72px, 9vw, 116px) clamp(22px, 6vw, 84px);
  color: var(--white);
}

.hero-content--centered {
  width: 100%;
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
  transition: opacity 0.28s ease, transform 0.28s ease;
}

.hero-content--centered.is-changing {
  opacity: 0;
  transform: translateY(12px);
}

.eyebrow {
  margin: 0 0 10px;
  color: #007a87;
  /* ratio 4.6:1 sobre blanco ✅ (cyan oscuro para textos pequeños) */
  font-size: 0.875rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow--lines {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.eyebrow--lines::before,
.eyebrow--lines::after {
  content: "";
  width: 28px;
  height: 1.5px;
  background: currentColor;
  opacity: 0.6;
}

.hero .eyebrow,
.cta-section .eyebrow,
.partner-band .eyebrow {
  color: #62e6ef;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 18px;
  font-size: clamp(2.45rem, 6vw, 5.2rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-content--centered h1 {
  font-size: clamp(1.75rem, 4.35vw, 3.2rem);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
  font-weight: 900;
  overflow-wrap: anywhere;
}

.hero-content--centered h1.hero-title--compact {
  font-size: clamp(1.5rem, 3.65vw, 2.65rem);
  line-height: 1.05;
}

h2 {
  margin-bottom: 14px;
  color: var(--navy-dark);
  font-size: clamp(1.75rem, 3vw, 3rem);
  line-height: 1.08;
}

h3 {
  margin-bottom: 8px;
  color: var(--navy-dark);
  font-size: 1.03rem;
}

.hero p {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.04rem, 2vw, 1.26rem);
}

.hero-sub {
  margin: 6px auto 28px;
  font-size: clamp(1.06rem, 1.9vw, 1.24rem);
  color: rgba(255, 255, 255, 0.85);
  max-width: 560px;
  line-height: 1.5;
  font-weight: 400;
}

.nav-mobile-ctas {
  display: none;
}

.hero-actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
}

.hero-content--centered .hero-actions {
  justify-content: center;
}

/* ================================================
   TRUST BAR — Certificaciones y alianzas
   ================================================ */

.trust-bar {
  background: linear-gradient(180deg, var(--white) 0%, var(--soft) 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 64px 0 72px;
}

.trust-bar__head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 44px;
}

.trust-bar__eyebrow {
  margin: 0 0 8px;
  color: var(--cyan);
  font-size: 0.875rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.trust-bar__title {
  margin: 0 0 12px;
  color: var(--navy-dark);
  font-size: clamp(1.4rem, 2.8vw, 2rem);
  font-weight: 900;
  line-height: 1.1;
}

.trust-bar__desc {
  margin: 0;
  color: var(--ink-2);
  font-size: 0.95rem;
  line-height: 1.6;
}

.trust-bar__logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.trust-bar__logo-card {
  display: grid;
  place-items: center;
  width: 160px;
  height: 96px;
  padding: 12px 20px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.trust-bar__logo-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(31, 41, 55, 0.10);
  border-color: rgba(4, 174, 191, 0.3);
}

.trust-bar__logo-card img {
  display: block;
  height: 44px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
}

.section.partner-section {
  scroll-margin-top: 112px;
  padding-top: clamp(56px, 7vw, 86px);
  padding-bottom: clamp(56px, 7vw, 86px);
  background: var(--white);
}

.section.partner-section--soft {
  background: var(--soft);
}

.partner-section__head {
  display: block;
  max-width: 720px;
  margin: 0 auto 28px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
  text-align: center;
}

.partner-section__head h2 {
  margin: 8px 0 10px;
  color: var(--navy-dark);
  font-size: clamp(1.7rem, 3.2vw, 2.45rem);
  font-weight: 900;
  line-height: 1.08;
}

.partner-section__head p:not(.eyebrow) {
  margin: 0;
  color: var(--ink-2);
  line-height: 1.65;
}

.partner-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(176px, 1fr));
  gap: 18px;
  max-width: 1240px;
  margin: 0 auto;
}

.partner-grid--compact {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  max-width: 920px;
}

.mobile-carousel-shell {
  position: relative;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 28px;
}

.mobile-carousel-shell--compact {
  max-width: 760px;
}

.partner-grid--mobile-carousel {
  --carousel-columns: 6;
  --carousel-rows: 2;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 90px) / 6);
  grid-template-columns: none;
  grid-template-rows: repeat(2, minmax(128px, 1fr));
  gap: 18px;
  max-width: 100%;
  margin: 0 auto;
  padding: 2px 0 10px;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-behavior: smooth;
  scroll-padding-left: 0;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.partner-grid--mobile-carousel::-webkit-scrollbar {
  display: none;
}

.partner-grid--mobile-carousel .partner-card {
  width: 100%;
  min-width: 0;
  scroll-snap-align: start;
}

.partner-grid--cert-carousel {
  --carousel-columns: 2;
  --carousel-rows: 1;
  grid-auto-columns: calc((100% - 18px) / 2);
  grid-template-rows: minmax(128px, 1fr);
  max-width: 100%;
}

.certifications-carousel-shell {
  max-width: 980px;
  padding: 0;
}

.certifications-carousel-shell .mobile-carousel-arrow,
.certifications-carousel-dots {
  display: none;
}

.partner-grid--cert-carousel {
  --carousel-columns: 4;
  --carousel-rows: 1;
  grid-auto-flow: row;
  grid-auto-columns: auto;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-template-rows: none;
  overflow: visible;
  scroll-snap-type: none;
}

.mobile-carousel-arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 22px;
  height: 42px;
  border: 0;
  border-radius: 0;
  color: rgba(37, 48, 111, 0.62);
  background: transparent;
  box-shadow: none;
  transform: translateY(-50%);
  cursor: pointer;
}

.mobile-carousel-arrow span {
  display: block;
  margin-top: -2px;
  font-size: 1.55rem;
  font-weight: 700;
  line-height: 1;
}

.mobile-carousel-arrow:active {
  color: var(--navy);
  background: transparent;
}

.mobile-carousel-arrow--prev {
  left: 0;
}

.mobile-carousel-arrow--next {
  right: 0;
}

.mobile-carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
}

.mobile-carousel-dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(37, 48, 111, 0.28);
  cursor: pointer;
  transition: width 0.18s ease, background 0.18s ease;
}

.mobile-carousel-dots button.is-active {
  width: 24px;
  background: var(--teal);
}

.partner-card {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 128px;
  padding: 24px 20px;
  color: var(--navy);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 24px rgba(31, 41, 55, 0.05);
  text-decoration: none;
  transition: transform 0.16s ease, box-shadow 0.16s ease, border-color 0.16s ease;
}

.partner-card:hover,
.partner-card:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(4, 174, 191, 0.4);
  box-shadow: 0 12px 28px rgba(31, 41, 55, 0.1);
  outline: none;
}

.partner-card::after {
  content: "";
  position: absolute;
  right: 14px;
  bottom: 14px;
  width: 8px;
  height: 8px;
  border-top: 2px solid var(--cyan-dark);
  border-right: 2px solid var(--cyan-dark);
  opacity: 0;
  transform: translate(-4px, 4px) rotate(45deg);
  transition: opacity 0.16s ease, transform 0.16s ease;
}

.partner-card:hover::after,
.partner-card:focus-visible::after {
  opacity: 1;
  transform: translate(0, 0) rotate(45deg);
}

.partner-card img {
  display: block;
  max-width: min(86%, 178px);
  max-height: 74px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.partner-card__text {
  color: var(--navy);
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.1;
  text-align: center;
}

.partner-card__fallback {
  display: grid;
  gap: 8px;
  text-align: center;
  color: var(--navy);
}

.partner-card__fallback strong {
  font-size: clamp(1.25rem, 2.2vw, 1.7rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.04em;
}

.partner-card__fallback span {
  max-width: 180px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1.25;
}

.certifications-admin {
  max-width: 920px;
  margin: 24px auto 0;
  padding: 18px;
  border: 1px dashed rgba(37, 48, 111, 0.32);
  border-radius: 8px;
  background: var(--white);
}

.certifications-admin-hero {
  min-height: 420px;
}

.certifications-gate-section {
  background: var(--white);
}

.certifications-gate {
  max-width: 620px;
  margin: 0 auto;
  padding: clamp(28px, 5vw, 42px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
  box-shadow: 0 12px 32px rgba(31, 41, 55, 0.08);
}

.certifications-gate h2 {
  margin-bottom: 10px;
}

.certifications-gate p:not(.eyebrow) {
  color: var(--muted);
}

.certifications-gate label {
  display: block;
  margin: 18px 0 8px;
  color: var(--navy);
  font-weight: 900;
}

.certifications-gate__row {
  display: flex;
  gap: 10px;
}

.certifications-gate input {
  flex: 1;
  min-width: 0;
  height: 48px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--ink);
  font: inherit;
  background: var(--white);
}

.certifications-gate__error {
  margin: 12px 0 0;
  color: var(--coral);
  font-weight: 900;
}

.certifications-admin__head {
  display: grid;
  gap: 4px;
  margin-bottom: 14px;
  text-align: center;
}

.certifications-admin__head strong {
  color: var(--navy-dark);
  font-size: 1rem;
  font-weight: 900;
}

.certifications-admin__head span {
  color: var(--muted);
  font-size: 0.95rem;
}

.certifications-admin__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 12px;
}

.certifications-admin__item {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 10px 12px;
  align-items: center;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--navy);
  font-weight: 800;
  background: var(--soft);
}

.certifications-admin__preview {
  grid-row: span 3;
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  overflow: hidden;
}

.certifications-admin__preview img {
  max-width: 52px;
  max-height: 42px;
  object-fit: contain;
}

.certifications-admin__preview--text {
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.certifications-admin__toggle {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.certifications-admin__toggle input {
  width: 18px;
  height: 18px;
  accent-color: var(--cyan);
}

.certifications-admin__upload,
.certifications-admin__remove {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--navy);
  font: inherit;
  font-size: 0.9rem;
  font-weight: 900;
  background: var(--white);
  cursor: pointer;
}

.certifications-admin__upload input {
  position: absolute;
  inline-size: 1px;
  block-size: 1px;
  opacity: 0;
  pointer-events: none;
}

.certifications-admin__remove {
  color: var(--muted);
}

.certifications-admin__reset {
  display: block;
  margin: 14px auto 0;
  min-height: 40px;
  padding: 8px 16px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--navy);
  font: inherit;
  font-weight: 900;
  background: var(--white);
  cursor: pointer;
}

.trust-row {
  position: relative;
  z-index: 3;
  max-width: 1100px;
  margin: -58px auto 0;
  display: grid;
  grid-template-columns: 1fr 1px 1fr 1px 1fr;
  padding: 36px 28px;
  background: var(--white);
  border-radius: 5px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.trust-cell {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 0 18px;
}

.trust-cell .icon {
  width: 54px;
  height: 54px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 2.5px solid var(--cyan);
  color: var(--cyan);
  background: var(--white);
}

.trust-cell h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.trust-cell p {
  font-size: 12px;
  font-weight: 500;
  color: var(--cyan);
  margin: 0;
  line-height: 1.35;
}

.trust-divider {
  width: 2px;
  background: var(--line);
  opacity: 0.4;
}

.section {
  padding: clamp(60px, 8vw, 108px) clamp(20px, 6vw, 84px);
}

.section-heading {
  max-width: 720px;
  margin: 0 auto 36px;
  text-align: center;
}

.section-title {
  font-size: clamp(1.8rem, 3.2vw, 2.2rem);
  font-weight: 900;
  color: var(--navy-dark);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  text-align: center;
}

.section-lede {
  max-width: 640px;
  margin: 18px auto 0;
  color: var(--ink-2);
  font-size: 1.06rem;
  text-align: center;
}

.service-grid,
.value-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-card,
.testimonial-card,
.value-grid article {
  padding: 28px 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.testimonial-card {
  flex: 0 0 calc((100% - 36px) / 3);
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
}

.testimonial-card__header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.testimonial-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 0.76rem;
  letter-spacing: 0.06em;
  flex-shrink: 0;
}

.testimonial-card:nth-child(2) .testimonial-avatar {
  background: var(--cyan);
}

.testimonial-card:nth-child(3) .testimonial-avatar {
  background: var(--green);
}

.testimonial-card:nth-child(4) .testimonial-avatar {
  background: var(--orange);
}

.testimonial-meta {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.testimonial-meta strong {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--navy-dark);
}

.testimonial-meta span {
  font-size: 0.76rem;
  color: var(--ink-2);
}

.testimonial-card p {
  font-size: 0.92rem;
  color: var(--ink-2);
  line-height: 1.6;
  font-style: italic;
  flex: 1;
  margin: 0;
}

.service-card {
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(4, 174, 191, 0.4);
  box-shadow: var(--shadow);
}

.service-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  border: 4px solid var(--white);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  background: var(--cyan);
  color: var(--white);
  flex-shrink: 0;
}

.service-card__icon svg {
  width: 26px;
  height: 26px;
}

.service-card:nth-child(2) .service-card__icon {
  background: var(--orange);
}

.service-card:nth-child(3) .service-card__icon {
  background: var(--coral);
}

.service-card:nth-child(4) .service-card__icon {
  background: var(--green);
}

.service-card:nth-child(5) .service-card__icon {
  background: var(--navy);
}

.service-card:nth-child(6) .service-card__icon {
  background: var(--navy-dark);
}

.service-card h3 {
  font-size: 1.18rem;
  margin-bottom: 8px;
}

.service-card p {
  color: var(--ink-2);
  font-size: 1rem;
  line-height: 1.58;
  flex: 1;
}

.service-card__cta {
  display: inline-block;
  margin-top: 18px;
  font-size: 0.92rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  color: var(--cyan);
  transition: color 0.15s ease, gap 0.15s ease;
}

.service-card:hover .service-card__cta {
  color: var(--cyan-dark);
}

.value-grid svg {
  width: 32px;
  height: 32px;
  margin-bottom: 18px;
  color: var(--cyan);
}

.value-grid article:nth-child(2) svg {
  color: var(--green);
}

.value-grid article:nth-child(3) svg {
  color: var(--orange);
}

.values-section .value-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 1120px;
  margin: 0 auto;
}

.trust-band,
.cta-section,
.partner-band {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
  padding: clamp(58px, 8vw, 96px) clamp(20px, 6vw, 84px);
  color: var(--white);
  background: var(--navy);
}

.trust-copy h2,
.trust-copy p,
.cta-section h2,
.cta-section p,
.partner-band h2,
.partner-band p {
  color: var(--white);
}

.trust-brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 0.18em;
  color: var(--white);
  white-space: nowrap;
  vertical-align: -0.08em;
}

.trust-brand-lockup img {
  width: 0.96em;
  height: 0.96em;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.trust-brand-lockup-navy {
  display: inline-flex;
  align-items: center;
  gap: 0.18em;
  color: var(--navy-dark);
  white-space: nowrap;
  vertical-align: -0.08em;
}

.trust-brand-lockup-navy img {
  width: 0.96em;
  height: 0.96em;
  object-fit: contain;
  filter: none;
}

.trust-list {
  display: grid;
  gap: 14px;
}

.trust-list article {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 16px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
}

.trust-list svg {
  grid-row: span 2;
  width: 30px;
  height: 30px;
  color: #62e6ef;
}

.trust-list h3,
.trust-list p {
  color: var(--white);
}

.nosotros-section {
  background: var(--soft);
}

.nosotros-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
}

.nosotros-photo {
  border-radius: 8px;
  overflow: hidden;
  min-height: 480px;
  background: var(--white);
  display: grid;
  place-items: center;
}

.nosotros-photo img {
  width: 100%;
  height: 100%;
  min-height: 480px;
  object-fit: contain;
  object-position: center bottom;
}

.nosotros-badge {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 26px 0 28px;
  padding: 14px 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.nosotros-badge__logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 142px;
  min-width: 142px;
  border-bottom: 3px solid var(--orange);
  padding-bottom: 6px;
}

.nosotros-badge__logo img {
  display: block;
  width: 132px;
  max-height: 42px;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(14%) sepia(43%) saturate(1746%) hue-rotate(204deg) brightness(88%) contrast(94%);
}

.nosotros-badge__label {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink-2);
  border-left: 1px solid var(--line);
  padding-left: 16px;
  line-height: 1.4;
}

.advisor-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.advisor-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 4px 14px rgba(31, 41, 55, 0.06);
}

.advisor-card__avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 0.88rem;
  letter-spacing: 0.06em;
  flex-shrink: 0;
}

.advisor-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: 3px;
}

.advisor-card p {
  font-size: 0.92rem;
  color: var(--ink-2);
  margin: 0;
}

.split-section,
.about-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
  padding: 0 clamp(20px, 6vw, 84px);
}

.split-image,
.about-image {
  overflow: hidden;
  min-height: 430px;
  border-radius: 8px;
}

.split-image img,
.about-image img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
}

.split-copy,
.about-copy {
  max-width: 620px;
}

.text-link {
  color: var(--navy);
  font-weight: 900;
  text-decoration: underline;
  text-decoration-color: var(--cyan);
  text-decoration-thickness: 3px;
  text-underline-offset: 5px;
}

.testimonials {
  background: var(--soft);
}

.testimonials-carousel {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-track {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  flex: 1;
}

.testimonial-track::-webkit-scrollbar {
  display: none;
}

.carousel-btn {
  display: grid;
  place-items: center;
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--navy);
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease;
}

.carousel-btn:hover {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

.carousel-btn svg {
  width: 18px;
  height: 18px;
}

.locations-section {
  background: var(--white);
}

.locations-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: clamp(22px, 5vw, 54px);
  align-items: stretch;
}

.map-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.mexico-map {
  width: 100%;
  height: auto;
  display: block;
}

.location-list {
  display: grid;
  gap: 14px;
}

.location-list article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: start;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 30px rgba(31, 41, 55, 0.08);
  transition: background 0.2s ease;
}

.location-list article:hover {
  background: var(--navy);
}

.location-list article:hover h3,
.location-list article:hover a {
  color: var(--cyan);
}

.location-list article:hover p {
  color: var(--white);
}

.location-list svg {
  width: 28px;
  height: 28px;
  color: var(--cyan);
}

.location-list p {
  margin-bottom: 0;
  color: var(--muted);
}

.social-section {
  background: linear-gradient(180deg, var(--soft), var(--white));
}

.social-section__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(24px, 5vw, 56px);
  align-items: center;
}

.social-section__copy {
  max-width: 520px;
}

.social-section__copy h2 {
  margin-bottom: 12px;
}

.social-section__copy p {
  color: var(--muted);
}

.social-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.social-card {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 118px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 30px rgba(31, 41, 55, 0.08);
  transition: transform 0.16s ease, box-shadow 0.16s ease, border-color 0.16s ease;
}

.social-card:hover {
  transform: translateY(-3px);
  border-color: rgba(4, 174, 191, 0.36);
  box-shadow: var(--shadow);
}

.social-card__icon {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  color: var(--white);
  border-radius: 50%;
  background: var(--navy);
}

.social-card__icon svg {
  width: 22px;
  height: 22px;
}

.social-card strong,
.social-card small {
  display: block;
}

.social-card strong {
  color: var(--navy-dark);
  font-size: 1.08rem;
}

.social-card small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 700;
}

.social-card--facebook .social-card__icon {
  background: #1877f2;
}

.social-card--instagram .social-card__icon {
  background: linear-gradient(135deg, #f58529, #dd2a7b 48%, #515bd4);
}

.social-card--whatsapp .social-card__icon {
  background: #25d366;
}

.testimonial-card {
  background: var(--white);
}

.coverage-section {
  background: var(--white);
}

.coverage-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.coverage-grid article {
  min-height: 220px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 30px rgba(31, 41, 55, 0.08);
}

.coverage-grid svg {
  width: 32px;
  height: 32px;
  margin-bottom: 18px;
  color: var(--cyan);
}

.coverage-grid article:nth-child(2n) svg {
  color: var(--green);
}

.coverage-grid article:nth-child(3n) svg {
  color: var(--orange);
}

.coverage-grid p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.6;
}

.stars {
  color: var(--yellow);
  font-size: 15px;
  letter-spacing: 1px;
  white-space: nowrap;
  margin-left: auto;
  flex-shrink: 0;
}


.blog-section {
  background: var(--white);
}

.blog-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 28px;
}

.blog-heading h2 {
  margin-bottom: 0;
}

.blog-heading .text-link {
  white-space: nowrap;
  padding-bottom: 4px;
  flex-shrink: 0;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.blog-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--white);
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.blog-card__cover {
  height: 180px;
  flex-shrink: 0;
}

.blog-card__cover--1 {
  background:
    linear-gradient(180deg, rgba(4, 174, 191, 0.2) 0%, rgba(4, 174, 191, 0.55) 100%),
    repeating-linear-gradient(45deg, #0d8f9f 0 14px, #0a7d8c 14px 28px);
}

.blog-card__cover--2 {
  background:
    linear-gradient(180deg, rgba(22, 32, 79, 0.25) 0%, rgba(22, 32, 79, 0.7) 100%),
    repeating-linear-gradient(45deg, #2a3566 0 14px, #212a54 14px 28px);
}

.blog-card__cover--3 {
  background:
    linear-gradient(180deg, rgba(47, 167, 101, 0.25) 0%, rgba(47, 167, 101, 0.65) 100%),
    repeating-linear-gradient(45deg, #247a4c 0 14px, #1e6840 14px 28px);
}

.blog-caption {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-caption h4 {
  font-size: 0.96rem;
  font-weight: 700;
  color: var(--navy-dark);
  margin: 10px 0 8px;
  line-height: 1.35;
}

.blog-caption p {
  font-size: 0.84rem;
  color: var(--ink-2);
  line-height: 1.5;
  margin: 0;
}

.blog-tag {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.blog-tag--auto {
  background: rgba(4, 174, 191, 0.12);
  color: var(--cyan-dark);
}

.blog-tag--salud {
  background: rgba(246, 161, 42, 0.14);
  color: var(--orange-dark);
}

.blog-tag--glosario {
  background: rgba(37, 48, 111, 0.1);
  color: var(--navy);
}

.btn-wa {
  background: var(--whatsapp);
  color: var(--white);
}

.btn-wa:hover {
  background: #1fb858;
}

.cta-section {
  grid-template-columns: 1fr auto;
  background: var(--navy-dark);
}

.page-hero {
  min-height: 440px;
  display: grid;
  align-items: end;
  padding: clamp(72px, 10vw, 128px) clamp(22px, 6vw, 84px);
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(22, 32, 79, 0.88), rgba(22, 32, 79, 0.32)),
    url("https://images.unsplash.com/photo-1450101499163-c8848c66ca85?auto=format&fit=crop&w=1800&q=82") center/cover;
}

.page-hero h1,
.page-hero p {
  max-width: 760px;
  color: var(--white);
}

.insurance-list {
  display: grid;
  gap: 22px;
  background: var(--soft);
}

.insurance-item {
  display: grid;
  grid-template-columns: 320px 1fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.insurance-item img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
}

.insurance-item>div {
  position: relative;
  z-index: 1;
  background: var(--white);
  padding: clamp(24px, 4vw, 42px);
}

.insurance-item svg {
  width: 34px;
  height: 34px;
  margin-bottom: 16px;
  color: var(--cyan);
}

.values-section {
  background: var(--soft);
}

.partner-band {
  grid-template-columns: 1fr auto;
  background: var(--navy);
}

.contact-hero {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: clamp(28px, 6vw, 72px);
  align-items: start;
  padding: clamp(72px, 10vw, 128px) clamp(20px, 6vw, 84px);
  background: var(--soft);
}

.contact-intro {
  position: sticky;
  top: 104px;
}

.contact-methods {
  display: grid;
  gap: 12px;
  margin-top: 30px;
}

.contact-methods a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  font-weight: 800;
}

.contact-methods svg {
  color: var(--cyan);
}

.contact-wa {
  justify-content: center;
  border-radius: 6px;
  font-size: 0.9rem;
}

.contact-form__success {
  color: var(--green);
  font-weight: 700;
  font-size: 0.9rem;
  margin: 0;
  padding: 12px 16px;
  border: 1px solid rgba(47, 167, 101, 0.3);
  border-radius: 6px;
  background: rgba(47, 167, 101, 0.07);
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: clamp(22px, 4vw, 36px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.office-section {
  background: var(--white);
}

.office-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.office-grid article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 30px rgba(31, 41, 55, 0.08);
}

.office-grid p {
  color: var(--muted);
  font-size: 0.95rem;
}

label {
  display: grid;
  gap: 8px;
  color: var(--navy-dark);
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  padding: 13px 14px;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 6px;
  font: inherit;
  background: var(--white);
  transition: border-color 0.15s;
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid var(--cyan);
  outline-offset: 0;
  border-color: var(--cyan);
}

textarea {
  resize: vertical;
}

.site-footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.78);
  padding: 64px 0 0;
  font-size: 15px;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-col h5 {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  margin: 0 0 18px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.65);
  font-size: 15px;
  transition: color 0.15s;
}

.footer-col a:hover {
  color: var(--white);
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 4px;
}

.footer-social a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.22);
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.78);
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}

.footer-social a:hover {
  background: var(--cyan);
  border-color: var(--cyan);
  color: var(--white);
}

.footer-social svg {
  width: 15px;
  height: 15px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.42);
}

.footer-bottom b {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 700;
}

.help-widget {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 40;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

.help-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 54px;
  padding: 0 22px 0 16px;
  border: 0;
  border-radius: 999px;
  background: var(--white);
  color: var(--navy);
  font: inherit;
  font-size: 15px;
  font-weight: 700;
  white-space: nowrap;
  cursor: pointer;
  box-shadow: 0 8px 24px -4px rgba(31, 41, 55, 0.14);
  transition: transform 0.15s, box-shadow 0.15s;
}

.help-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px -4px rgba(31, 41, 55, 0.2);
}

.help-btn img {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  flex-shrink: 0;
}

.help-panel {
  position: absolute;
  bottom: calc(100% + 12px);
  right: 0;
  width: 340px;
  max-width: calc(100vw - 44px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(31, 41, 55, 0.18);
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.help-widget.is-open .help-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.help-panel__header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px;
  background: var(--navy);
  color: var(--white);
}

.help-panel__header img {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  flex-shrink: 0;
}

.help-panel__header span {
  flex: 1;
  font-weight: 700;
  font-size: 15px;
}

.help-panel__header-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.help-panel__header-name {
  font-weight: 700;
  font-size: 14px;
}

.help-panel__header-status {
  font-size: 12px;
  opacity: 0.75;
  font-weight: 500;
}

.help-panel__close {
  width: 28px;
  height: 28px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background 0.15s;
}

.help-panel__close:hover {
  background: rgba(255, 255, 255, 0.3);
}

.help-panel__messages {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-height: 280px;
  overflow-y: auto;
  background: var(--soft);
}

.help-panel__msg {
  display: flex;
  gap: 8px;
  max-width: 85%;
}

.help-panel__msg--bot {
  align-self: flex-start;
}

.help-panel__msg--user {
  align-self: flex-end;
  flex-direction: row-reverse;
}

.help-panel__msg-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--white);
  display: grid;
  place-items: center;
}

.help-panel__msg-avatar img {
  width: 20px;
  height: 20px;
  border-radius: 50%;
}

.help-panel__msg-content {
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 14px;
  line-height: 1.5;
  position: relative;
}

.help-panel__msg--bot .help-panel__msg-content {
  background: var(--white);
  color: var(--ink);
  border: 1px solid var(--line);
  border-bottom-left-radius: 4px;
}

.help-panel__msg--user .help-panel__msg-content {
  background: var(--navy);
  color: var(--white);
  border-bottom-right-radius: 4px;
}

.help-panel__msg-content p {
  margin: 0 0 4px;
}

.help-panel__msg-time {
  font-size: 11px;
  opacity: 0.6;
  display: block;
  text-align: right;
}

.help-panel__msg--user .help-panel__msg-time {
  color: rgba(255, 255, 255, 0.7);
}

.help-panel__input {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  border-top: 1px solid var(--line);
  background: var(--white);
}

.help-panel__input input {
  flex: 1;
  height: 40px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font: inherit;
  font-size: 14px;
  color: var(--ink);
  background: var(--soft);
  outline: none;
}

.help-panel__input button {
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-size: 18px;
  cursor: pointer;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: background 0.15s;
}

.help-panel__input button:hover {
  background: var(--navy-dark);
}

@media (max-width: 1280px) {
  .social-section__inner {
    grid-template-columns: 1fr;
  }

  .social-section__copy {
    max-width: 100%;
  }
}

@media (max-width: 920px) {
  .quote-tools__inner {
    max-width: 760px;
  }

  .quote-tools__inner--split {
    grid-template-columns: 1fr;
  }

  .quote-tools__copy {
    text-align: center;
  }

  .quote-tools__inner--split .quote-tools__copy {
    max-width: 740px;
    margin: 0 auto;
    text-align: center;
  }

  .services-icon-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 820px;
  }

  .svc-icon-cell {
    min-height: 104px;
  }

  .site-header {
    grid-template-columns: auto auto;
    min-height: 86px;
  }

  .nav-toggle {
    display: grid;
    justify-self: end;
  }

  .site-nav,
  .header-actions {
    display: none;
  }

  .site-nav.is-open {
    grid-column: 1 / -1;
    display: grid;
    justify-self: stretch;
    gap: 0;
    padding-top: 10px;
    border-top: 1px solid var(--line);
  }

  .site-nav.is-open .nav-mobile-ctas {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 14px 0 6px;
  }

  .service-grid,
  .value-grid,
  .office-grid,
  .coverage-grid,
  .blog-grid,
  .social-section__inner,
  .locations-layout,
  .trust-band,
  .nosotros-grid,
  .split-section,
  .about-hero,
  .partner-band,
  .cta-section,
  .contact-hero {
    grid-template-columns: 1fr;
  }

  .split-section {
    padding: clamp(60px, 8vw, 108px) clamp(20px, 6vw, 84px);
  }

  .about-hero {
    padding: clamp(60px, 8vw, 108px) clamp(20px, 6vw, 84px) 0;
  }

  .medical-compare__card--minor {
    width: min(100%, 520px);
    margin: 0 auto;
  }

  .testimonial-card {
    flex: 0 0 calc((100% - 18px) / 2);
  }

  .advisor-cards {
    grid-template-columns: 1fr;
  }

  .contact-intro {
    position: static;
  }

  .insurance-item {
    display: flex;
    flex-direction: column;
    grid-template-columns: 1fr;
  }

  .insurance-item img {
    flex: 0 0 auto;
    height: auto;
    min-height: 0;
    aspect-ratio: 16 / 10;
    object-fit: cover;
  }

  .insurance-item>div {
    flex: 0 0 auto;
    width: 100%;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .trust-bar__logo-card {
    width: 140px;
    height: 84px;
  }

  .brand-logo {
    width: 62px;
    height: 62px;
  }

  .brand-text {
    max-width: 170px;
    font-size: 0.875rem;
  }

  .partner-section__head {
    max-width: 620px;
    margin-bottom: 24px;
  }

  .partner-grid {
    grid-template-columns: repeat(auto-fit, minmax(154px, 1fr));
    gap: 14px;
  }

  .partner-grid--compact {
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    max-width: 760px;
  }

  .partner-card {
    min-height: 116px;
    padding: 20px 16px;
  }

  .partner-card img {
    max-width: min(88%, 158px);
    max-height: 64px;
  }

  .trust-row {
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 0;
  }

  .trust-divider {
    display: none;
  }

  .trust-cell {
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-cell:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }
}

@media (max-width: 640px) {
  .container {
    padding: 0 20px;
  }

  .site-header {
    min-height: 82px;
    padding: 6px 16px;
  }

  .brand {
    gap: 8px;
  }

  .brand-logo {
    width: 54px;
    height: 54px;
  }

  .brand-text {
    max-width: 170px;
    font-size: 0.875rem;
  }

  .hero {
    min-height: min(60vh, 460px);
  }

  .service-grid,
  .value-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-card {
    flex: 0 0 85%;
  }

  .footer-top {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand {
    grid-column: auto;
    align-items: center;
  }

  .footer-brand-logos {
    justify-content: center;
  }

  .footer-logo {
    width: 98px;
    height: 98px;
  }

  .footer-partner-logo {
    width: min(62vw, 210px);
    height: 82px;
  }

  .footer-association {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  .footer-social {
    justify-content: center;
  }

  .trust-bar__logo-card {
    width: calc(50% - 10px);
    height: 80px;
  }

  .trust-bar__logos {
    gap: 14px;
  }

  .social-cards {
    grid-template-columns: 1fr;
  }

  .nosotros-badge {
    align-items: flex-start;
    gap: 14px;
    padding: 14px 16px;
  }

  .nosotros-badge__logo {
    width: 118px;
    min-width: 118px;
  }

  .nosotros-badge__logo img {
    width: 110px;
  }

  .partner-section__head {
    padding-bottom: 18px;
  }

  .partner-section__head h2 {
    font-size: clamp(1.65rem, 8vw, 2rem);
  }

  .partner-section__head p:not(.eyebrow) {
    font-size: 1rem;
  }

  .partner-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .partner-grid--compact {
    grid-template-columns: 1fr;
    max-width: 320px;
  }

  .partner-card {
    min-height: 108px;
    padding: 18px 12px;
  }

  .partner-card img {
    max-width: min(90%, 150px);
    max-height: 58px;
  }

  .certifications-gate__row {
    flex-direction: column;
  }

  .hero-actions,
  .button-row {
    align-items: stretch;
    flex-direction: column;
  }

  .btn,
  .header-cta {
    width: 100%;
  }

  .split-image,
  .about-image,
  .split-image img,
  .about-image img {
    min-height: 310px;
  }
}

@media (max-width: 380px) {
  .brand-logo {
    width: 48px;
    height: 48px;
  }

  .brand-text {
    max-width: 158px;
    font-size: 0.82rem;
  }

  .partner-grid {
    grid-template-columns: 1fr;
    max-width: 280px;
  }

  .partner-card {
    min-height: 112px;
  }

  .partner-card img {
    max-width: min(92%, 170px);
    max-height: 66px;
  }
}

/* ================================================
   PRODUCT PAGES — seguro-auto, etc.
   ================================================ */

/* --- Hero --- */
.product-hero {
  position: relative;
  min-height: 360px;
  display: flex;
  align-items: center;
  padding: 64px 0 56px;
  color: #fff;
  overflow: hidden;
}

.product-hero__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(22, 32, 79, .72) 40%, rgba(22, 32, 79, .38));
  z-index: 1;
}

.product-hero__bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.product-hero--auto {
  min-height: 520px;
}

.product-hero--medical {
  min-height: 520px;
}

.product-hero--auto .product-hero__bg {
  background:
    linear-gradient(90deg, rgba(8, 13, 35, 0.92) 0%, rgba(23, 34, 83, 0.82) 48%, rgba(23, 34, 83, 0.58) 100%),
    linear-gradient(0deg, rgba(8, 13, 35, 0.28), rgba(8, 13, 35, 0.28));
}

.product-hero--medical .product-hero__bg {
  background:
    linear-gradient(90deg, rgba(8, 13, 35, 0.9) 0%, rgba(23, 34, 83, 0.82) 52%, rgba(23, 34, 83, 0.62) 100%),
    linear-gradient(0deg, rgba(8, 13, 35, 0.3), rgba(8, 13, 35, 0.3));
}

.product-hero--auto .product-hero__bg img {
  filter: brightness(0.72) saturate(0.92);
}

.product-hero--medical .product-hero__bg img {
  filter: brightness(0.7) saturate(0.9);
}

.product-hero .container {
  position: relative;
  z-index: 2;
}

.product-hero--auto .container,
.product-hero--medical .container {
  width: 100%;
  max-width: 1560px;
  padding-left: clamp(28px, 8vw, 132px);
  padding-right: clamp(28px, 8vw, 132px);
  text-align: center;
}

.product-hero h1 {
  font-size: clamp(36px, 5.2vw, 56px);
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 16px;
  max-width: 560px;
}

.product-hero--auto h1 {
  max-width: 760px;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.04;
  letter-spacing: 0.01em;
  text-shadow: 0 3px 22px rgba(0, 0, 0, 0.42);
  margin-left: auto;
  margin-right: auto;
}

.product-hero--medical h1 {
  max-width: 860px;
  font-size: clamp(38px, 4.7vw, 62px);
  line-height: 1.05;
  letter-spacing: 0.01em;
  text-shadow: 0 3px 22px rgba(0, 0, 0, 0.42);
  margin-left: auto;
  margin-right: auto;
}

.product-hero p {
  font-size: clamp(17px, 1.5vw, 19px);
  line-height: 1.5;
  color: rgba(255, 255, 255, .9);
  max-width: 460px;
  margin: 0 0 28px;
}

.product-hero--auto p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.96);
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.38);
  margin-left: auto;
  margin-right: auto;
}

.product-hero--medical p {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.96);
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.38);
  margin-left: auto;
  margin-right: auto;
}

.product-hero--auto .hero-actions,
.product-hero--medical .hero-actions {
  justify-content: center;
}

.product-hero .hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

@media (max-width: 920px) {

  .product-hero--auto,
  .product-hero--medical {
    min-height: 460px;
    padding: 56px 0 48px;
  }

  .product-hero--auto .container,
  .product-hero--medical .container {
    padding-left: clamp(24px, 6vw, 56px);
    padding-right: clamp(24px, 6vw, 56px);
  }

  .product-hero--auto .product-hero__bg {
    background:
      linear-gradient(90deg, rgba(8, 13, 35, 0.93) 0%, rgba(23, 34, 83, 0.84) 62%, rgba(23, 34, 83, 0.68) 100%),
      linear-gradient(0deg, rgba(8, 13, 35, 0.34), rgba(8, 13, 35, 0.34));
  }

  .product-hero--medical .product-hero__bg {
    background:
      linear-gradient(90deg, rgba(8, 13, 35, 0.93) 0%, rgba(23, 34, 83, 0.84) 64%, rgba(23, 34, 83, 0.68) 100%),
      linear-gradient(0deg, rgba(8, 13, 35, 0.36), rgba(8, 13, 35, 0.36));
  }

  .product-hero--auto h1,
  .product-hero--medical h1 {
    max-width: 680px;
    font-size: clamp(36px, 8vw, 54px);
  }

  .product-hero--auto p,
  .product-hero--medical p {
    max-width: 560px;
  }
}

@media (max-width: 640px) {

  .product-hero--auto,
  .product-hero--medical {
    min-height: auto;
    padding: 48px 0 42px;
  }

  .product-hero--auto .product-hero__bg {
    background:
      linear-gradient(90deg, rgba(8, 13, 35, 0.94) 0%, rgba(23, 34, 83, 0.88) 100%),
      linear-gradient(0deg, rgba(8, 13, 35, 0.42), rgba(8, 13, 35, 0.42));
  }

  .product-hero--medical .product-hero__bg {
    background:
      linear-gradient(90deg, rgba(8, 13, 35, 0.94) 0%, rgba(23, 34, 83, 0.88) 100%),
      linear-gradient(0deg, rgba(8, 13, 35, 0.44), rgba(8, 13, 35, 0.44));
  }

  .product-hero--auto h1,
  .product-hero--medical h1 {
    font-size: clamp(31px, 10vw, 42px);
    line-height: 1.08;
    max-width: 100%;
  }

  .product-hero--auto p,
  .product-hero--medical p {
    font-size: 1rem;
    max-width: 100%;
  }

  .product-hero--auto .hero-actions,
  .product-hero--medical .hero-actions {
    align-items: stretch;
  }

  .product-hero--auto .hero-actions .btn,
  .product-hero--medical .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }
}

/* --- Stats band --- */
.stats-band {
  background: var(--navy);
  padding: 56px 0;
}

.stats-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.stat__num {
  display: block;
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 10px;
  letter-spacing: -.02em;
}

.stat__label {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(255, 255, 255, .7);
}

/* --- Why band orange modifier (Gastos Medicos) --- */
.why-band--orange .why-icon {
  border-color: var(--orange);
  color: var(--orange);
}

.why-band--orange .why-label {
  color: var(--ink);
}

/* --- Medical compare --- */
.medical-compare {
  background: var(--white);
}

.medical-compare__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.22fr) minmax(280px, 0.78fr);
  gap: 24px;
  max-width: 1060px;
  margin: 0 auto;
  align-items: stretch;
}

@media (max-width: 640px) {
  .medical-compare__grid {
    grid-template-columns: 1fr;
  }
}

.medical-compare__card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 100%;
  padding: clamp(26px, 4vw, 38px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
  box-shadow: 0 12px 32px rgba(31, 41, 55, 0.07);
}

.medical-compare__card--major {
  background: var(--navy);
  color: var(--white);
  padding: clamp(30px, 4.5vw, 46px);
}

.medical-compare__card--minor {
  align-self: center;
  min-height: auto;
  padding: clamp(22px, 3vw, 30px);
  background: #f7fafc;
  box-shadow: 0 8px 22px rgba(31, 41, 55, 0.045);
}

.medical-compare__icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 50%;
  background: rgba(4, 174, 191, 0.12);
  color: var(--cyan);
}

.medical-compare__card--major .medical-compare__icon {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
}

.medical-compare__card--minor .medical-compare__icon {
  width: 48px;
  height: 48px;
  margin-bottom: 12px;
}

.medical-compare__icon svg {
  width: 28px;
  height: 28px;
}

.medical-compare__label {
  margin: 0 0 8px;
  color: var(--cyan-dark);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.medical-compare__badge {
  display: inline-grid;
  place-items: center;
  margin: -2px 0 14px;
  padding: 6px 10px;
  color: #007a87;
  border: 1px solid rgba(0, 122, 135, 0.2);
  border-radius: 999px;
  background: rgba(75, 180, 197, 0.08);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.medical-compare__card--major .medical-compare__label {
  color: rgba(255, 255, 255, 0.72);
}

.medical-compare__card h3 {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  line-height: 1.12;
}

.medical-compare__card--minor h3 {
  font-size: clamp(1.14rem, 1.6vw, 1.45rem);
}

.medical-compare__card--major h3 {
  color: var(--white);
}

.medical-compare__card p:not(.medical-compare__label) {
  margin: 0 0 18px;
  color: var(--ink-2);
  font-size: 1rem;
  line-height: 1.65;
}

.medical-compare__card--minor p:not(.medical-compare__label) {
  font-size: 0.95rem;
  line-height: 1.58;
}

.medical-compare__card--major p:not(.medical-compare__label) {
  color: rgba(255, 255, 255, 0.78);
}

.medical-compare__card ul {
  display: grid;
  gap: 10px;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}

.medical-compare__card li {
  position: relative;
  padding-left: 22px;
  color: var(--ink-2);
  font-size: 0.98rem;
  line-height: 1.5;
}

.medical-compare__card--minor li {
  font-size: 0.92rem;
}

.medical-compare__card--major li {
  color: rgba(255, 255, 255, 0.82);
}

.medical-compare__cta-major {
  color: var(--navy);
  background: var(--white);
  border-color: rgba(255, 255, 255, 0.82);
}

.medical-compare__cta-major:hover {
  color: var(--navy);
  background: rgba(255, 255, 255, 0.9);
}

.medical-compare__card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan);
}

.medical-compare__card .btn {
  margin-top: auto;
}

@media (max-width: 760px) {
  .medical-compare__grid {
    grid-template-columns: 1fr;
    gap: 16px;
    max-width: 460px;
    align-items: stretch;
  }

  .medical-compare__card,
  .medical-compare__card--major,
  .medical-compare__card--minor {
    width: 100%;
    margin: 0;
    min-height: 0;
    align-self: stretch;
    padding: 22px 20px;
  }

  .medical-compare__card--major {
    padding: 24px 20px;
  }

  .medical-compare__card h3 {
    font-size: 1.32rem;
  }

  .medical-compare__card p:not(.medical-compare__label),
  .medical-compare__card li {
    font-size: 0.94rem;
  }

  .medical-compare__card ul {
    margin-bottom: 18px;
  }
}

/* --- Plans --- */
.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 1080px;
  margin: 0 auto;
}

.plan-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 32px 26px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, .06);
  transition: transform 0.2s;
}

.plan-card:hover {
  transform: translateY(-4px);
}

.plan-card.plan-featured {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
  box-shadow: 0 12px 32px rgba(37, 48, 111, .32);
}

.plan-card__icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--soft);
  display: grid;
  place-items: center;
  margin: 0 auto 18px;
  color: var(--navy);
}

.plan-card.plan-featured .plan-card__icon {
  background: rgba(255, 255, 255, .12);
  color: #fff;
}

.plan-card__icon svg {
  width: 36px;
  height: 36px;
}

.plan-card h3 {
  font-size: 22px;
  font-weight: 900;
  color: var(--cyan);
  margin: 0 0 10px;
}

.plan-card.plan-featured h3 {
  color: #fff;
}

.plan-card p {
  font-size: 15px;
  color: var(--ink-2);
  margin: 0 0 22px;
  line-height: 1.5;
}

.plan-card.plan-featured p {
  color: rgba(255, 255, 255, .82);
}

/* --- Coverage list --- */
.cob-list {
  max-width: 760px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 8px 32px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, .06);
  list-style: none;
}

.cob-list li {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.cob-list li:last-child {
  border-bottom: none;
}

.cob-list__check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--cyan);
  color: #fff;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.cob-list__check svg {
  width: 13px;
  height: 13px;
}

.cob-list b {
  display: block;
  color: var(--navy);
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 2px;
}

.cob-list span {
  color: var(--ink-2);
  font-size: 14.5px;
}

/* --- Why SK Asesores grid --- */
.why-band {
  background: var(--soft);
  padding: 56px 0 64px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  max-width: 1080px;
  margin: 0 auto;
}

.why-cell {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}

.why-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 2px solid var(--cyan);
  color: var(--cyan);
  display: grid;
  place-items: center;
}

.why-icon svg {
  width: 30px;
  height: 30px;
}

.why-label {
  color: var(--navy);
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: .06em;
  text-transform: uppercase;
  line-height: 1.3;
}

/* --- Horizontal stepper --- */
.stepper {
  display: flex;
  position: relative;
  max-width: 900px;
  margin: 40px auto 0;
}

.stepper::before {
  content: '';
  position: absolute;
  top: 24px;
  left: calc(12.5% + 24px);
  right: calc(12.5% + 24px);
  height: 2px;
  background: var(--line);
  z-index: 0;
}

.step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 12px;
}

.step__num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-size: 18px;
  font-weight: 900;
  display: grid;
  place-items: center;
  position: relative;
  z-index: 1;
  margin-bottom: 16px;
  flex-shrink: 0;
}

.step h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 6px;
}

.step p {
  font-size: 14px;
  color: var(--ink-2);
  margin: 0;
  line-height: 1.45;
}

/* --- FAQ --- */
.faq-wrap {
  max-width: 760px;
  margin: 32px auto 0;
}

.faq-wrap details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  margin-bottom: 10px;
  overflow: hidden;
}

.faq-wrap summary {
  position: relative;
  padding: 16px 56px 16px 22px;
  cursor: pointer;
  list-style: none;
  display: block;
  font-weight: 700;
  color: var(--navy);
  font-size: 15px;
  line-height: 1.35;
  user-select: none;
}

.faq-wrap summary::-webkit-details-marker {
  display: none;
}

.faq-wrap summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 22px;
  transform: translateY(-50%);
  font-size: 22px;
  color: var(--cyan);
}

.faq-wrap details[open]>summary::after {
  content: "−";
}

.faq-wrap .faq-body {
  padding: 0 22px 18px;
  color: var(--ink-2);
  font-size: 14px;
  line-height: 1.6;
}

/* --- Closing CTA --- */
.closing-cta {
  padding: 80px 0;
  background: var(--white);
  text-align: center;
}

.closing-cta__eyebrow {
  color: var(--navy);
  font-weight: 900;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: .16em;
  margin-bottom: 12px;
}

.closing-cta h2 {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 900;
  color: var(--cyan);
  text-transform: uppercase;
  line-height: 1;
  margin: 0 0 28px;
}

/* --- Product page responsive --- */
@media (max-width: 640px) {
  .stats-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

@media (max-width: 920px) {
  .plans-grid {
    grid-template-columns: 1fr;
    max-width: 440px;
  }

  .why-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .stepper {
    flex-direction: column;
    align-items: center;
    gap: 0;
  }

  .stepper::before {
    display: none;
  }

  .step {
    flex-direction: row;
    text-align: left;
    padding: 0 0 24px 0;
    align-items: flex-start;
    gap: 16px;
    width: 100%;
    max-width: 480px;
  }

  .step__num {
    margin-bottom: 0;
    flex-shrink: 0;
  }

  .step>div {
    flex: 1;
  }
}

@media (max-width: 560px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cob-list {
    padding: 8px 16px;
  }
}

/* ================================================
   HOME — Hero carousel, benefit cards, icon services
   ================================================ */

.hero-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, .15);
  border: 1px solid rgba(255, 255, 255, .3);
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  transition: background .15s;
}

.hero-nav-btn:hover {
  background: rgba(255, 255, 255, .3);
}

.hero-nav-btn--prev {
  left: 16px;
}

.hero-nav-btn--next {
  right: 16px;
}

.hero-nav-btn svg {
  width: 22px;
  height: 22px;
}

/* Benefit cards float below hero */
/* ================================================
   BENEFIT CARDS — Rediseño SaaS moderno
   ================================================ */

.benefit-cards {
  position: relative;
  z-index: 3;
  max-width: 1160px;
  margin: -56px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 0 28px;
}

.benefit-card {
  background: var(--white);
  border-radius: 16px;
  padding: 32px 28px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, .04), 0 12px 32px rgba(37, 48, 111, .10);
  border: 1px solid rgba(37, 48, 111, .07);
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  animation: fadeUp 0.5s ease both;
}

.benefit-card:nth-child(2) {
  animation-delay: 0.1s;
}

.benefit-card:nth-child(3) {
  animation-delay: 0.2s;
}

.benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 10px rgba(0, 0, 0, .05), 0 24px 48px rgba(37, 48, 111, .14);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.benefit-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--navy);
  color: var(--white);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.benefit-card:nth-child(2) .benefit-card__icon {
  background: var(--cyan);
}

.benefit-card:nth-child(3) .benefit-card__icon {
  background: var(--orange);
}

.benefit-card__icon svg {
  width: 24px;
  height: 24px;
}

.benefit-card h4 {
  font-size: 1.12rem;
  font-weight: 800;
  color: var(--navy-dark);
  margin: 0 0 6px;
  line-height: 1.25;
}

.benefit-card p {
  font-size: 0.98rem;
  color: var(--ink-2);
  margin: 0;
  line-height: 1.6;
}

/* Services icon row (replaces card grid) */
.quick-services--featured {
  position: relative;
  background: var(--white);
}

.quick-services--featured .section-heading {
  max-width: 820px;
  margin-bottom: 42px;
}

.quick-services--featured .section-heading h2 {
  margin: 8px 0 0;
  color: var(--navy-dark);
  font-size: clamp(2rem, 4.1vw, 3.35rem);
  font-weight: 900;
  line-height: 1.04;
}

.quick-services--featured .section-lede {
  max-width: 760px;
  font-size: clamp(1.02rem, 1.6vw, 1.18rem);
}

.services-icon-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  max-width: 920px;
  margin: 0 auto;
}

.svc-icon-cell {
  display: grid;
  grid-template-columns: auto 1fr auto;
  grid-template-rows: auto auto;
  align-items: center;
  gap: 6px 16px;
  min-height: 104px;
  padding: 22px 24px;
  text-align: left;
  text-decoration: none;
  color: inherit;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 28px rgba(31, 41, 55, 0.05);
  transition: transform 0.16s ease, box-shadow 0.16s ease, border-color 0.16s ease;
}

.svc-icon-cell__circle {
  grid-row: 1 / 3;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: 1px solid rgba(75, 180, 197, 0.55);
  display: grid;
  place-items: center;
  color: var(--teal);
  background: rgba(75, 180, 197, 0.08);
  transition: background .15s, color .15s, border-color .15s;
}

.svc-icon-cell:hover {
  transform: translateY(-2px);
  border-color: rgba(75, 180, 197, 0.55);
  box-shadow: 0 14px 34px rgba(31, 41, 55, 0.09);
}

.svc-icon-cell:hover .svc-icon-cell__circle {
  background: rgba(37, 48, 111, 0.06);
  border-color: var(--navy);
  color: var(--navy);
}

.svc-icon-cell__circle svg {
  width: 27px;
  height: 27px;
  color: currentColor;
  stroke: currentColor;
}

.svc-icon-cell__label {
  font-size: 1rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .035em;
  color: var(--navy);
  line-height: 1.3;
}

.svc-icon-cell__cta {
  grid-column: 2;
  font-size: 0.78rem;
  font-weight: 900;
  color: #007a87;
  letter-spacing: .03em;
  opacity: 1;
  transform: none;
  transition: color 0.15s;
}

.svc-icon-cell:hover .svc-icon-cell__cta {
  color: var(--navy);
}

.quote-tools {
  padding-top: clamp(36px, 5vw, 64px);
  padding-bottom: clamp(46px, 6vw, 76px);
  background: var(--white);
}

.quote-tools__inner {
  display: grid;
  gap: clamp(22px, 4vw, 34px);
  max-width: 920px;
  margin: 0 auto;
}

.quote-tools__copy {
  max-width: 740px;
  margin: 0 auto;
  text-align: center;
}

.quote-tools__inner--split {
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.72fr);
  align-items: center;
  max-width: 1040px;
}

.quote-tools__inner--split .quote-tools__copy {
  max-width: 620px;
  margin: 0;
  text-align: left;
}

.quote-tools__copy h2 {
  margin: 8px 0 12px;
  color: var(--navy-dark);
  font-size: clamp(1.75rem, 3.2vw, 2.7rem);
  font-weight: 900;
  line-height: 1.07;
}

.quote-brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 0.16em;
  color: var(--navy);
  white-space: nowrap;
  vertical-align: -0.08em;
}

.quote-brand-lockup img {
  width: 0.94em;
  height: 0.94em;
  object-fit: contain;
}

.quote-tools__copy p:not(.eyebrow) {
  margin: 0;
  color: var(--ink-2);
  font-size: 1.04rem;
  line-height: 1.65;
}

.quote-tools__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.quote-tools__grid--single {
  grid-template-columns: minmax(0, 360px);
  justify-content: end;
}

.quote-tool-card {
  display: grid;
  justify-items: center;
  align-items: center;
  gap: 12px;
  min-height: 214px;
  padding: 24px 24px 22px;
  text-align: center;
  color: inherit;
  border: 1px solid rgba(37, 48, 111, 0.12);
  border-radius: 8px;
  background: linear-gradient(180deg, #fff, #f8fbfd);
  box-shadow: 0 14px 34px rgba(31, 41, 55, 0.07);
  text-decoration: none;
  transition: transform 0.16s ease, box-shadow 0.16s ease, border-color 0.16s ease;
}

.quote-tools__inner--split .quote-tool-card {
  min-height: 188px;
  background: #fff;
  box-shadow: 0 16px 42px rgba(31, 41, 55, 0.12);
}

.quote-tool-card:hover {
  transform: translateY(-3px);
  border-color: rgba(75, 180, 197, 0.55);
  box-shadow: 0 18px 42px rgba(31, 41, 55, 0.11);
}

.quote-tool-card__icon {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  color: var(--white);
  border-radius: 50%;
  background: var(--teal);
}

.quote-tool-card__icon--alt {
  background: var(--navy);
}

.quote-tool-card__icon svg {
  width: 30px;
  height: 30px;
  color: currentColor;
  stroke: currentColor;
}

.quote-tool-card__content {
  display: grid;
  gap: 8px;
}

.quote-tool-card__content strong {
  color: var(--navy-dark);
  font-size: 1.08rem;
  font-weight: 900;
}

.quote-tool-card__content small {
  color: var(--ink-2);
  font-size: 1rem;
  line-height: 1.5;
}

.quote-tool-card__cta {
  align-self: end;
  justify-self: center;
  color: #007a87;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  white-space: nowrap;
}

/* ================================================
   PRODUCT PAGES — Zigzag process, cob-split, closing photo bg, numstats
   ================================================ */

/* Process zigzag */
.process-zig {
  max-width: 820px;
  margin: 40px auto 0;
  display: grid;
  grid-template-columns: 1fr 110px 1fr;
  align-items: center;
  row-gap: 28px;
}

.pz-num {
  grid-column: 2;
  font-size: 80px;
  font-weight: 900;
  color: var(--cyan);
  text-align: center;
  line-height: 1;
  letter-spacing: -.02em;
}

.pz-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px 24px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, .08);
}

.pz-card h4 {
  color: var(--navy);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
}

.pz-card p {
  font-size: 14px;
  color: var(--ink-2);
  margin: 0;
  line-height: 1.45;
}

.pz-card--l {
  grid-column: 1;
}

.pz-card--r {
  grid-column: 3;
}

/* Coberturas 2-col split */
.cob-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: stretch;
  max-width: 1000px;
  margin: 0 auto;
}

.cob-split .cob-list {
  margin: 0;
}

.cob-split__photo {
  border-radius: 10px;
  overflow: hidden;
  min-height: 340px;
}

.cob-split__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Closing CTA with photo background */
.closing-cta--photo {
  position: relative;
  overflow: hidden;
}

.closing-cta--photo .closing-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.closing-cta--photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(22, 32, 79, .9) 40%, rgba(22, 32, 79, .65));
  z-index: 1;
}

.closing-cta--photo>.container {
  position: relative;
  z-index: 2;
}

.closing-cta--photo .closing-cta__eyebrow {
  color: rgba(255, 255, 255, .82);
}

.closing-cta--photo h2 {
  color: var(--cyan);
}

/* Medicos numstats */
.numstats-section {
  padding: 64px 0;
  background: #fff;
}

.numstats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 860px;
  margin: 40px auto 0;
  text-align: center;
}

.numstat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.numstat__icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 3px solid var(--cyan);
  color: var(--cyan);
  display: grid;
  place-items: center;
}

.numstat__icon svg {
  width: 40px;
  height: 40px;
}

.numstat__pct {
  display: block;
  font-size: 52px;
  font-weight: 900;
  color: var(--navy);
  line-height: 1;
  letter-spacing: -.02em;
}

.numstat__lbl {
  font-size: 14px;
  font-weight: 900;
  color: var(--cyan);
  text-transform: uppercase;
  letter-spacing: .08em;
}

/* Why cell description text (medicos) */
.why-cell p {
  font-size: 14px;
  color: var(--ink-2);
  margin: 0;
  line-height: 1.5;
  text-align: center;
}

/* Responsive — new elements */
@media (max-width: 920px) {
  .benefit-cards {
    grid-template-columns: 1fr;
    margin-top: 28px;
    gap: 14px;
  }

  .cob-split {
    grid-template-columns: 1fr;
  }

  .cob-split__photo {
    min-height: 240px;
  }

  .process-zig {
    grid-template-columns: 60px 1fr;
    row-gap: 14px;
    column-gap: 16px;
    max-width: 480px;
  }

  .pz-num {
    grid-column: 1;
    font-size: 42px;
  }

  .pz-card--l,
  .pz-card--r {
    grid-column: 2;
  }

  .pz-spacer {
    display: none;
  }

  .numstats-grid {
    grid-template-columns: 1fr;
    max-width: 300px;
  }
}

@media (max-width: 560px) {
  .benefit-cards {
    padding: 0 18px;
  }

  .quick-services--featured .section-heading h2 {
    font-size: clamp(1.75rem, 9vw, 2.35rem);
  }

  .services-icon-row {
    grid-template-columns: 1fr;
    gap: 12px;
    max-width: 360px;
  }

  .svc-icon-cell {
    min-height: 92px;
    padding: 18px 16px;
  }

  .svc-icon-cell__circle {
    width: 52px;
    height: 52px;
  }

  .svc-icon-cell__circle svg { width: 26px; height: 26px; }

  .svc-icon-cell__label {
    font-size: 0.86rem;
    letter-spacing: 0.025em;
  }

  .svc-icon-cell__cta {
    font-size: 0.72rem;
  }

  .quote-tools {
    padding-top: 36px;
  }

  .quote-tools__grid {
    grid-template-columns: 1fr;
    max-width: 430px;
    margin: 0 auto;
    justify-content: center;
  }

  .quote-brand-lockup {
    white-space: normal;
  }

  .quote-tool-card {
    min-height: 0;
    padding: 22px 18px;
    text-align: center;
    justify-items: center;
  }

  .quote-tool-card__icon {
    width: 50px;
    height: 50px;
  }

  .quote-tool-card__icon svg {
    width: 24px;
    height: 24px;
  }

  .quote-tool-card__cta {
    justify-self: center;
    font-size: 0.74rem;
  }
}

/* ================================================
   MOBILE CRO — Sticky bottom CTA bar
   ================================================ */

.mobile-cta-bar {
  display: none;
}

@media (max-width: 640px) {
  body {
    padding-bottom: 62px;
  }

  .mobile-cta-bar {
    display: grid;
    grid-template-columns: 1fr;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 60;
    height: 62px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.18);
  }

  .mobile-cta-bar__wa {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 800;
    font-size: 0.9rem;
    font-family: inherit;
    color: var(--white);
    text-decoration: none;
  }

  .mobile-cta-bar__wa {
    background: var(--whatsapp);
  }

  .mobile-cta-bar__wa:active {
    background: #1fb858;
  }

  .help-widget {
    display: none;
  }

  .hero-actions .btn-ghost {
    order: -1;
  }
}

/* Carrusel de aseguradoras */
@media (max-width: 920px) {
  .mobile-carousel-shell {
    max-width: min(100%, 820px);
    padding: 0 24px;
  }

  .partner-grid--mobile-carousel {
    --carousel-columns: 4;
    --carousel-rows: 2;
    grid-auto-columns: calc((100% - 42px) / 4);
    grid-template-rows: repeat(2, minmax(116px, 1fr));
    gap: 14px;
  }
}

@media (max-width: 640px) {
  .mobile-carousel-shell {
    max-width: min(100%, 580px);
    padding: 0 18px;
  }

  .partner-grid--mobile-carousel {
    --carousel-columns: 2;
    --carousel-rows: 1;
    grid-auto-columns: calc((100% - 12px) / 2);
    grid-template-rows: minmax(142px, 1fr);
    gap: 12px;
  }

  .partner-grid--mobile-carousel .partner-card {
    min-height: 142px;
    padding: 24px 14px;
  }

  .partner-grid--mobile-carousel .partner-card img {
    width: auto;
    height: auto;
    max-width: min(92%, 178px);
    max-height: 78px;
  }

  .partner-grid--cert-carousel {
    --carousel-columns: 1;
    --carousel-rows: 1;
    grid-auto-columns: 100%;
    grid-template-rows: minmax(142px, 1fr);
    gap: 16px;
  }

  .mobile-carousel-shell--compact {
    max-width: min(100%, 360px);
    padding: 0 24px;
  }

  .mobile-carousel-arrow--prev {
    left: -2px;
  }

  .mobile-carousel-arrow--next {
    right: -2px;
  }

  .certifications-carousel-shell {
    max-width: min(100%, 360px);
    padding: 0 24px;
  }

  .certifications-carousel-shell .mobile-carousel-arrow {
    display: grid;
  }

  .certifications-carousel-dots {
    display: flex;
  }

  .partner-grid--cert-carousel {
    --carousel-columns: 1;
    --carousel-rows: 1;
    grid-auto-flow: column;
    grid-auto-columns: 100%;
    grid-template-columns: none;
    grid-template-rows: minmax(142px, 1fr);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }
}

@media (max-width: 380px) {
  .mobile-carousel-shell {
    padding: 0 16px;
  }

  .partner-grid--mobile-carousel {
    --carousel-columns: 2;
    --carousel-rows: 1;
    grid-auto-columns: calc((100% - 10px) / 2);
    grid-template-rows: minmax(132px, 1fr);
    gap: 10px;
    max-width: 100%;
  }

  .partner-grid--cert-carousel {
    --carousel-columns: 1;
    --carousel-rows: 1;
    grid-auto-columns: 100%;
  }

  .partner-grid--mobile-carousel .partner-card {
    min-height: 132px;
    padding: 22px 12px;
  }

  .partner-grid--mobile-carousel .partner-card img {
    max-width: min(92%, 162px);
    max-height: 70px;
  }

  .mobile-carousel-arrow {
    width: 20px;
    height: 40px;
  }
}

@media (max-width: 920px) {
  .quote-tools__inner--split {
    grid-template-columns: 1fr;
    max-width: 760px;
  }

  .quote-tools__inner--split .quote-tools__copy {
    max-width: 740px;
    margin: 0 auto;
    text-align: center;
  }

  .quote-tools__grid--single {
    grid-template-columns: minmax(0, 430px);
    justify-content: center;
    margin: 0 auto;
    width: 100%;
  }
}

/* ================================================
   ACCESIBILIDAD — Focus visible global (WCAG 2.1)
   ================================================ */

/* Mostrar focus ring al navegar con teclado */
:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Ocultar outline en interaccion con mouse/touch */
:focus:not(:focus-visible) {
  outline: none;
}

/* Botones con fondo oscuro: usar amarillo para mejor contraste */
.btn-primary:focus-visible,
.btn-wa:focus-visible,
.help-btn:focus-visible,
.mobile-cta-bar__wa:focus-visible {
  outline-color: var(--yellow);
}

/* ================================================
   UTILITIES — Clases de utilidad
   ================================================ */

.pt-0 {
  padding-top: 0 !important;
}

.pb-0 {
  padding-bottom: 0 !important;
}

.py-0 {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
