/* ═══════════════════════════════════════════════════
   URÓLOGO METROPOLITANO — Dr. Abraham López Venegas
   Design System · CSS compartido todas las páginas
   ═══════════════════════════════════════════════════ */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
img {
  display: block;
  max-width: 100%;
}
a {
  text-decoration: none;
}

:root {
  --teal: #1bafc4;
  --teal-d: #148899;
  --teal-light: rgba(27, 175, 196, 0.1);
  --ink: #0c1a26;
  --ink2: #182432;
  --slate: #374151;
  --mist: #7a8899;
  --fog: #f1f4f7;
  --line: #e1e8ee;
  --white: #ffffff;
  --dark: #091520;
  --green: #22c55e;
  --amber: #f59e0b;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans: "Plus Jakarta Sans", system-ui, sans-serif;
  --shadow-card:
    0 1px 2px rgba(12, 26, 38, 0.04), 0 8px 24px rgba(12, 26, 38, 0.06);
  --shadow-card-hover:
    0 4px 8px rgba(12, 26, 38, 0.06), 0 18px 44px rgba(12, 26, 38, 0.12);
}

body {
  font-family: var(--sans);
  background: #dde2e8;
  min-width: 1440px;
  -webkit-font-smoothing: antialiased;
  color: var(--ink);
}

/* ─── TÍTULOS EDITORIALES (serif) ─── */
h1,
h2,
.section-h,
.creds-h,
.cta-banner h2,
.reviews-num {
  font-family: var(--serif);
  font-optical-sizing: auto;
}
h1 em,
h2 em,
.section-h em {
  font-style: italic;
}

.page {
  width: 1440px;
  margin: 0 auto;
  background: var(--white);
  overflow: hidden;
}

/* ─── GRAIN TEXTURE ─── */
.grain-overlay::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1;
  mix-blend-mode: overlay;
  opacity: 0.5;
}

/* ═══════════════════════════════════
   NAVBAR
   ═══════════════════════════════════ */
.nav {
  height: 70px;
  padding: 0 56px;
  background: rgba(12, 26, 38, 0.97);
  backdrop-filter: blur(20px);
  padding: 0 56px;
  position: sticky;
  top: 0;
  z-index: 200;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.navwrapper {
  display: flex;
  align-items: center;
  height: 100%;
}
.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.nav-logo-img {
  height: 44px;
  width: auto;
  display: block;
  filter: brightness(1.1);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-left: auto;
  list-style: none;
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 0;
}
.nav-link {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.15s;
}
.nav-link:hover,
.nav-link.active {
  color: rgba(255, 255, 255, 0.9);
}
.nav-tel {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
}
.nav-tel:hover {
  color: #fff;
}

/* ─── HAMBURGUESA (mobile) ─── */
.nav-burger {
  width: 32px;
  height: 32px;
  padding: 0;
  border: none;
  background: transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  margin-left: auto;
  cursor: pointer;
}
.nav-burger span {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.85);
  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
}

/* ─── MENÚ OFFCANVAS (mobile) ─── */
.nav-offcanvas {
  width: 300px;
  max-width: 84vw;
  background: var(--dark);
  color: #fff;
}
.nav-offcanvas .offcanvas-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px 24px;
}
.nav-offcanvas .nav-logo-img {
  height: 36px;
}
.nav-offcanvas .offcanvas-body {
  padding: 8px 24px 32px;
}
.nav-offcanvas-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-offcanvas-link {
  display: block;
  font-size: 15px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  padding: 14px 4px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: color 0.15s;
}
.nav-offcanvas-link:hover,
.nav-offcanvas-link.active {
  color: #fff;
}
.nav-offcanvas-links .nav-tel {
  display: block;
  color: var(--teal);
  font-weight: 600;
}
.nav-offcanvas-links .btn-wa {
  margin-top: 16px;
  width: 100%;
  justify-content: center;
}

/* ═══════════════════════════════════
   PÁGINA HEADER (páginas internas)
   ═══════════════════════════════════ */
.page-hero {
  background: var(--dark);
  padding: 64px 56px;
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 64px;
  align-items: center;
  min-height: 320px;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.04;
  pointer-events: none;
  mix-blend-mode: screen;
}
.page-hero-content {
  position: relative;
  z-index: 2;
}
.page-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.page-hero-eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 8px rgba(27, 175, 196, 0.6);
}
.page-hero-eyebrow span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
}
.page-hero h1 {
  font-size: 52px;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.page-hero h1 em {
  font-style: italic;
  color: var(--teal);
}
.page-hero p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.7;
  max-width: 480px;
}
.page-hero p strong {
  color: rgba(255, 255, 255, 0.7);
}
.page-hero-ctas {
  display: flex;
  gap: 12px;
  margin-top: 32px;
}
.page-hero-img {
  position: relative;
  z-index: 2;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 220px;
}
.page-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.page-hero-img.no-img {
  background: linear-gradient(
    135deg,
    rgba(27, 175, 196, 0.08),
    rgba(27, 175, 196, 0.02)
  );
  border: 1px solid rgba(27, 175, 196, 0.12);
}

/* ═══════════════════════════════════
   SECCIÓN GENÉRICA
   ═══════════════════════════════════ */
.section {
  padding-top: 72px;
  padding-bottom: 72px;
  border-bottom: 1px solid var(--line);
}
.section.dark {
  background: var(--ink);
  border-bottom: none;
}
.section.fog {
  background: var(--fog);
}
.section.dark .sect-tag {
  color: rgba(27, 175, 196, 0.7);
}
.section.dark .section-h {
  color: #fff;
}
.section.dark .section-p {
  color: rgba(255, 255, 255, 0.62);
}

.sect-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal-d);
  margin-bottom: 14px;
  display: inline-flex;
  align-items: center;
  gap: 11px;
}
.sect-tag::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--teal);
  border-radius: 2px;
  flex-shrink: 0;
}
.section.dark .sect-tag::before {
  background: rgba(27, 175, 196, 0.7);
}
.section-h {
  font-size: 42px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 8px;
}
.section-p {
  font-size: 14.5px;
  color: var(--mist);
  line-height: 1.7;
  max-width: 560px;
}

/* Header de sección: SectionTag/heading a la izquierda + CTA o nota a la derecha */
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
}
.section-header-note {
  text-align: right;
  max-width: 240px;
}

/* ═══════════════════════════════════
   BOTONES
   ═══════════════════════════════════ */
.btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--green);
  color: #fff;
  padding: 14px 26px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(34, 197, 94, 0.3);
  transition: filter 0.15s;
}
.btn-wa:hover {
  filter: brightness(1.08);
}
.btn-teal {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--teal);
  color: #fff;
  padding: 13px 22px;
  border-radius: var(--radius-sm);
  font-size: 13.5px;
  font-weight: 700;
  transition: filter 0.15s;
}
.btn-teal:hover {
  filter: brightness(1.08);
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1.5px solid var(--teal);
  color: var(--teal);
  padding: 12px 22px;
  border-radius: var(--radius-sm);
  font-size: 13.5px;
  font-weight: 700;
  transition: all 0.15s;
}
.btn-outline:hover {
  background: var(--teal);
  color: #fff;
}
.btn-ghost {
  color: rgba(255, 255, 255, 0.5);
  font-size: 13.5px;
  font-weight: 500;
  padding: 14px 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  transition: all 0.15s;
}
.btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.85);
}
.btn-white-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.7);
  padding: 12px 22px;
  border-radius: var(--radius-sm);
  font-size: 13.5px;
  font-weight: 600;
  transition: all 0.15s;
}
.btn-white-outline:hover {
  border-color: rgba(255, 255, 255, 0.4);
  color: #fff;
}
.btn-block {
  display: block;
  text-align: center;
}

/* ═══════════════════════════════════
   TRUST STRIP
   ═══════════════════════════════════ */
.trust {
  background: var(--ink);
  padding: 22px 56px;

  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.trust-wrapper {
  display: flex;
  align-items: center;
  gap: 40px;
}
.t-item {
  display: flex;
  align-items: center;
  gap: 10px;
}
.t-icon {
  width: 32px;
  height: 32px;
  border-radius: 7px;
  background: rgba(27, 175, 196, 0.12);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.t-icon {
  width: 36px;
  height: 36px;
}
.t-icon svg {
  width: 19px;
  height: 19px;
  stroke: var(--teal);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.t-label strong {
  display: block;
  font-size: 12.5px;
  font-weight: 600;
  color: #fff;
  line-height: 1.2;
}
.t-label span {
  font-size: 10.5px;
  color: rgba(255, 255, 255, 0.35);
}
.t-sep {
  width: 1px;
  height: 26px;
  background: rgba(255, 255, 255, 0.08);
}
.trust-cta {
  margin-left: auto;
  font-size: 12px;
  font-weight: 700;
  color: var(--teal);
  display: flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
}

/* ═══════════════════════════════════
   BENTO STATS (Home)
   ═══════════════════════════════════ */
.bento {
  padding: 56px 56px;
  background: var(--fog);
  border-bottom: 1px solid var(--line);
}
.bento-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto auto;
  gap: 12px;
}
.bento-cell {
  background: var(--white);
  border-radius: 14px;
  border: 1px solid var(--line);
  overflow: hidden;
}
.bento-cell.c-stat {
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.bento-cell.c-dark {
  background: var(--ink);
}
.bento-cell.c-teal {
  background: var(--teal);
}
.bento-big-num {
  font-size: 56px;
  font-weight: 900;
  color: var(--ink);
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 4px;
}
.bento-big-num.light {
  color: #fff;
}
.bento-big-num.teal-c {
  color: #fff;
}
.bento-lbl {
  font-size: 12.5px;
  color: var(--mist);
  font-weight: 500;
}
.bento-lbl.light {
  color: rgba(255, 255, 255, 0.5);
}
.bento-lbl.teal-lbl {
  color: rgba(255, 255, 255, 0.75);
}
.b1 {
  grid-column: span 3;
  min-height: 160px;
}
.b2 {
  grid-column: span 3;
  min-height: 160px;
}
.b3 {
  grid-column: span 3;
  min-height: 160px;
}
.b4 {
  grid-column: span 3;
  min-height: 160px;
}
.b5 {
  grid-column: span 5;
  min-height: 160px;
}
.b6 {
  grid-column: span 4;
  min-height: 160px;
}
.b7 {
  grid-column: span 3;
  min-height: 160px;
}
.bento-desc-cell {
  padding: 28px 24px;
}
.bento-desc-cell h3 {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1.3;
}
.bento-desc-cell p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.65;
}
.bento-award {
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.bento-award-title {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 6px;
}
.bento-award h3 {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}
.bento-award-years {
  display: flex;
  gap: 7px;
  margin-top: auto;
}
.award-chip {
  background: rgba(255, 255, 255, 0.12);
  padding: 4px 11px;
  border-radius: 20px;
  font-size: 11.5px;
  color: #fff;
  font-weight: 600;
}
.bento-cnmu {
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.bento-cnmu-num {
  font-size: 42px;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1;
}
.bento-cnmu-lbl {
  font-size: 10.5px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ═══════════════════════════════════
   CREDENCIALES (Home + Perfil)
   ═══════════════════════════════════ */
.creds-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 72px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.creds-h {
  font-size: 38px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 16px;
}
.creds-bio {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.75;
  margin-bottom: 28px;
  max-width: 500px;
}
.creds-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 28px;
}
.cstat {
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 10px;
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.03);
}
.cstat-num {
  font-size: 28px;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 3px;
}
.cstat-lbl {
  font-size: 10.5px;
  color: rgba(255, 255, 255, 0.35);
}
.creds-photo {
  width: 100%;
  height: 460px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.06);
}
@media (max-width: 767px) {
  .creds-photo {
    margin-top: 30px;
  }
}
.creds-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.creds-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(9, 21, 32, 0.4) 0%, transparent 60%);
  pointer-events: none;
}
/* Radial glow on dark sections */
.dark-glow::before {
  content: "";
  position: absolute;
  right: -100px;
  top: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(27, 175, 196, 0.05) 0%,
    transparent 70%
  );
  pointer-events: none;
}

/* ═══════════════════════════════════
   404 (página no encontrada)
   ═══════════════════════════════════ */
.notfound-hero {
  min-height: calc(100vh - 70px);
  display: flex;
  align-items: center;
}
.notfound-content {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}
.notfound-content .hero-eyebrow {
  margin-bottom: 24px;
}
.notfound-code {
  font-family: var(--serif);
  font-size: 140px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--teal);
  margin-bottom: 8px;
}
.notfound-content h1 {
  font-size: 32px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}
.notfound-content p {
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.7;
  margin-bottom: 32px;
}
.notfound-ctas {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-bottom: 36px;
}
.notfound-links {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}
.notfound-links a {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.15s;
}
.notfound-links a:hover {
  color: #fff;
}

/* ═══════════════════════════════════
   UBICACIONES
   ═══════════════════════════════════ */
.ubi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.ubi-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  box-shadow: var(--shadow-card);
}
.ubi-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}
.ubi-map {
  height: 155px;
  background: linear-gradient(135deg, #d5e2ec, #bdd0de);
  display: block;
  font-size: 11px;
  color: #8faabb;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.ubi-map iframe {
  display: block;
}
.ubi-body {
  padding: 20px 22px 22px;
}
.ubi-zone {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 3px;
}
.ubi-name {
  font-size: 19px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 2px;
}
.ubi-hosp {
  font-size: 12px;
  color: var(--mist);
  margin-bottom: 8px;
}
.ubi-addr {
  font-size: 12.5px;
  color: var(--slate);
  line-height: 1.55;
  margin-bottom: 10px;
}
.ubi-price {
  display: inline-block;
  background: rgba(27, 175, 196, 0.08);
  color: var(--teal-d);
  font-size: 12.5px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 5px;
  margin-bottom: 12px;
}
.ubi-link {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--teal);
  display: flex;
  align-items: center;
  gap: 4px;
}
.ubi-cta {
  text-align: center;
  margin-top: 32px;
}

/* ═══════════════════════════════════
   RESEÑAS
   ═══════════════════════════════════ */
.reviews-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
}
.reviews-num {
  font-size: 64px;
  font-weight: 900;
  color: var(--ink);
  letter-spacing: -0.04em;
  line-height: 1;
}
.reviews-stars {
  color: var(--amber);
  font-size: 16px;
  letter-spacing: 3px;
  margin-top: 4px;
}
.reviews-cnt {
  font-size: 11.5px;
  color: var(--mist);
  margin-top: 3px;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.rev-card {
  background: var(--white);
  border-radius: 12px;
  padding: 24px;
  border: 1px solid var(--line);
}
.rev-stars {
  color: var(--amber);
  font-size: 12.5px;
  letter-spacing: 2px;
  margin-bottom: 12px;
}
.rev-q {
  font-size: 14.5px;
  font-style: italic;
  color: var(--slate);
  line-height: 1.7;
  margin-bottom: 16px;
}
.rev-src {
  font-size: 11px;
  color: var(--mist);
  font-weight: 500;
}
.reviews-footer {
  margin-top: 24px;
}
.reviews-footer a {
  font-size: 13px;
  font-weight: 700;
  color: var(--teal);
}

a {
  font-size: 13px;
  font-weight: 700;
  color: var(--teal);
}

/* ═══════════════════════════════════
   BLOG GRID
   ═══════════════════════════════════ */
.blog-grid-featured {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 18px;
}
.blog-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.blog-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  box-shadow: var(--shadow-card);
}
.blog-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card-hover);
}
.blog-thumb {
  background: linear-gradient(135deg, #d5e2ec, #bdd0de);
  overflow: hidden;
}
.blog-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.blog-card:first-child .blog-thumb {
  height: 220px;
}
.blog-card:not(:first-child) .blog-thumb {
  height: 145px;
}
.blog-thumb.h220 {
  height: 220px;
}
.blog-thumb.h145 {
  height: 145px;
}
.blog-thumb.h200 {
  height: 200px;
}
.blog-body {
  padding: 18px 20px 20px;
}
.blog-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 6px;
}
.blog-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.35;
  margin-bottom: 6px;
}
.blog-card:not(:first-child) .blog-title {
  font-size: 14px;
}
.blog-meta {
  font-size: 11px;
  color: var(--mist);
}
.blog-excerpt {
  font-size: 13.5px;
  color: var(--mist);
  line-height: 1.6;
  margin-top: 8px;
}
.blog-read {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--teal);
  margin-top: 12px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

/* ═══════════════════════════════════
   FAQ ACORDEÓN
   ═══════════════════════════════════ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
}
.faq-item:first-child {
  border-top: 1px solid var(--line);
}
.faq-q {
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0;
  cursor: pointer;
}
.dark .faq-q {
  color: #fff;
}
.faq-a {
  font-size: 13.5px;
  color: var(--mist);
  line-height: 1.7;
  margin-top: 10px;
  max-width: 680px;
}
.dark .faq-a {
  color: rgba(255, 255, 255, 0.45);
}

/* ═══════════════════════════════════
   COMPARATIVA TABLE
   ═══════════════════════════════════ */
.compare-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: 12px;
  overflow: hidden;
}
.compare-table th {
  background: var(--ink);
  color: #fff;
  padding: 14px 20px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.compare-table th:first-child {
  text-align: left;
}
.compare-table td {
  padding: 14px 20px;
  font-size: 13.5px;
  border-bottom: 1px solid var(--line);
}
.compare-table tr:last-child td {
  border-bottom: none;
}
.compare-table td:first-child {
  font-weight: 600;
  color: var(--slate);
}
.compare-table .good {
  color: #16a34a;
  font-weight: 700;
}
.compare-table .bad {
  color: #dc2626;
  font-weight: 500;
}
.compare-table tr:nth-child(even) td {
  background: var(--fog);
}

/* ═══════════════════════════════════
   NUMBERED STEPS
   ═══════════════════════════════════ */
.steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}
.step:first-child {
  border-top: 1px solid var(--line);
}
.step-n {
  font-size: 11px;
  font-weight: 700;
  color: var(--teal);
  letter-spacing: 0.02em;
  padding-top: 2px;
}
.step-content h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 6px;
}
.step-content p {
  font-size: 13.5px;
  color: var(--mist);
  line-height: 1.65;
}
.dark .step {
  border-color: rgba(255, 255, 255, 0.08);
}
.dark .step-content h3 {
  color: #fff;
}
.dark .step-content p {
  color: rgba(255, 255, 255, 0.45);
}

/* ═══════════════════════════════════
   GRID 2 COLUMNAS (info + media)
   ═══════════════════════════════════ */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.two-col.reverse {
  direction: rtl;
}
.two-col.reverse > * {
  direction: ltr;
}
.two-col-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 440px;
}
.two-col-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.two-col-content {
}
.two-col-content p {
  font-size: 14px;
  color: var(--mist);
  line-height: 1.75;
  margin-bottom: 20px;
}
.two-col-content p strong {
  color: var(--slate);
}
.dark .two-col-content p {
  color: rgba(255, 255, 255, 0.45);
}

/* ═══════════════════════════════════
   ICON + TEXT CARDS (3 columnas)
   ═══════════════════════════════════ */
.icon-cards {
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
}
.icon-card {
  background: var(--white);
  padding: 36px 28px;
  transition: background 0.15s;
  border-right: 1px solid var(--line);
}
.icon-card:last-child {
  border-right: none;
}

.icon-card:hover {
  background: var(--fog);
}
.fog .icon-card {
  background: var(--fog);
}
.fog .icon-card:hover {
  background: #e8ecf0;
}
.dark .icon-card {
  background: rgba(255, 255, 255, 0.03);
}
.dark .icon-card:hover {
  background: rgba(255, 255, 255, 0.06);
}
.ic-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--teal-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.ic-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--teal);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.dark .ic-icon {
  background: rgba(27, 175, 196, 0.1);
}
.icon-card h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
  line-height: 1.3;
}
.dark .icon-card h3 {
  color: #fff;
}
.icon-card p {
  font-size: 13px;
  color: var(--mist);
  line-height: 1.65;
}
.dark .icon-card p {
  color: rgba(255, 255, 255, 0.4);
}

/* ═══════════════════════════════════
   CTA BANNER (dark strip)
   ═══════════════════════════════════ */
.cta-banner {
  background: var(--ink);
  padding: 56px;
}
.cta-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: "";
  position: absolute;
  left: -100px;
  top: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(27, 175, 196, 0.07) 0%,
    transparent 70%
  );
}
.cta-banner-content {
  position: relative;
  z-index: 1;
}
.cta-banner h2 {
  font-size: 36px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 8px;
}
.cta-banner p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  max-width: 460px;
  line-height: 1.6;
}
.cta-banner-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

/* ═══════════════════════════════════
   ASEGURADORAS
   ═══════════════════════════════════ */
.insur {
  padding: 36px 56px;
  border-bottom: 1px solid var(--line);
}

.insur-wrapper {
  display: flex;
  align-items: center;
  gap: 40px;
}
.insur-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mist);
  white-space: nowrap;
  flex-shrink: 0;
}
.insur-logos {
  display: flex;
  align-items: stretch;
  border: 1px solid var(--line);
  border-radius: 11px;
  overflow: hidden;
  flex: 1;
  background: var(--white);
  box-shadow: var(--shadow-card);
}
.insur-logo {
  padding: 22px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid var(--line);
  transition: background 0.15s;
}
.insur-logo:last-child {
  border-right: none;
}
.insur-logo:hover {
  background: var(--fog);
}
.insur-logo img {
  max-height: 30px;
  max-width: 118px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(1) opacity(0.6);
  transition: filter 0.2s;
}
.insur-logo:hover img {
  filter: grayscale(0) opacity(1);
}
.insur-more {
  font-size: 12px;
  color: var(--mist);
  padding-left: 20px;
  white-space: nowrap;
  flex-shrink: 0;
}

/* ═══════════════════════════════════
   SPECIALIST CARD (bottom of inner pages)
   ═══════════════════════════════════ */
.specialist-card {
  background: var(--dark);
  padding: 56px;
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 48px;
  align-items: center;
  border-radius: 16px;
  position: relative;
  overflow: hidden;
}
.specialist-card::before {
  content: "";
  position: absolute;
  right: -50px;
  top: -50px;
  width: 300px;
  height: 300px;
  background: radial-gradient(
    circle,
    rgba(27, 175, 196, 0.06) 0%,
    transparent 70%
  );
}
.spec-photo {
  width: 200px;
  height: 200px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
  flex-shrink: 0;
}
.spec-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.spec-content {
  position: relative;
  z-index: 1;
}
.spec-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}
.spec-badge {
  background: rgba(255, 255, 255, 0.07);
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 600;
}
.spec-content h3 {
  font-size: 26px;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 8px;
}
.spec-content p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.65;
  margin-bottom: 24px;
}
.spec-ctas {
  display: flex;
  gap: 12px;
}

/* ═══════════════════════════════════
   BULLET LIST (checkmarks)
   ═══════════════════════════════════ */
.check-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.check-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.check-dot {
  width: 20px;
  height: 20px;
  border-radius: 5px;
  flex-shrink: 0;
  background: rgba(27, 175, 196, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.check-dot svg {
  width: 10px;
  height: 10px;
  stroke: var(--teal);
  fill: none;
  stroke-width: 2.5;
}
.check-item p {
  font-size: 14px;
  color: var(--slate);
  line-height: 1.55;
}
.check-item p strong {
  color: var(--ink);
}
.dark .check-item p {
  color: rgba(255, 255, 255, 0.5);
}
.dark .check-item p strong {
  color: rgba(255, 255, 255, 0.8);
}

/* ═══════════════════════════════════
   STATS ROW HORIZONTAL
   ═══════════════════════════════════ */
.stats-row {
  display: flex;
  gap: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  overflow: hidden;
  width: fit-content;
}
.stat-item {
  padding: 18px 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}
.stat-item:last-child {
  border-right: none;
}
.stat-num {
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.02em;
}
.stat-lbl {
  font-size: 10.5px;
  color: rgba(255, 255, 255, 0.35);
  margin-top: 3px;
  letter-spacing: 0.02em;
}

/* ═══════════════════════════════════
   CATEGORTÍAS BLOG
   ═══════════════════════════════════ */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.cat-card {
  display: block;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 24px 22px;
  text-decoration: none;
  transition:
    border-color 0.15s,
    box-shadow 0.15s;
  cursor: pointer;
}
.cat-card:hover {
  border-color: var(--teal);
  box-shadow: 0 4px 20px rgba(27, 175, 196, 0.08);
}
.cat-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 6px;
}
.cat-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 6px;
}
.cat-card p {
  font-size: 12.5px;
  color: var(--mist);
  line-height: 1.55;
}

/* ═══════════════════════════════════
   BREADCRUMBS
   ═══════════════════════════════════ */
.breadcrumbs-section {
  border-bottom: 1px solid var(--line);
}
.breadcrumbs-wrapper {
  padding: 16px 0;
}
.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.breadcrumbs-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
}
.breadcrumbs-item a {
  color: var(--mist);
  text-decoration: none;
  transition: color 0.15s ease;
}
.breadcrumbs-item a:hover {
  color: var(--teal-d);
}
.breadcrumbs-item span[aria-current="page"] {
  color: var(--ink);
  font-weight: 600;
}
.breadcrumbs-sep {
  color: var(--line);
}

/* ═══════════════════════════════════
   HERO BLOG (especial)
   ═══════════════════════════════════ */
.blog-hero {
  background: var(--dark);
  padding: 56px 56px 48px;
  position: relative;
  overflow: hidden;
}
.blog-hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.blog-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
  filter: blur(4px);
  transform: scale(1.06);
  display: block;
}
.blog-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(9, 21, 32, 0.78),
    rgba(9, 21, 32, 0.88)
  );
  z-index: 1;
  pointer-events: none;
}
.blog-hero-noise {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.04;
  pointer-events: none;
  mix-blend-mode: screen;
  z-index: 2;
}
.blog-hero-content {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
}
.blog-hero-content .hero-eyebrow {
  margin-bottom: 16px;
}
.blog-hero-content h1 {
  font-size: 50px;
  font-weight: 900;
  color: #fff;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.blog-hero-content h1 em {
  font-style: italic;
  color: var(--teal);
}
.blog-hero-content p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}

/* ═══════════════════════════════════
   FILTROS (blog)
   ═══════════════════════════════════ */
.filter-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  margin-bottom: 40px;
}
.filter-btn {
  padding: 7px 16px;
  border-radius: 20px;
  border: 1px solid var(--line);
  font-size: 12.5px;
  font-weight: 600;
  color: var(--mist);
  background: var(--white);
  cursor: pointer;
  transition: all 0.15s;
}
.filter-btn:hover,
.filter-btn.active {
  background: var(--teal);
  border-color: var(--teal);
  color: #fff;
}

/* ═══════════════════════════════════
   ARTÍCULO DESTACADO (blog)
   ═══════════════════════════════════ */
.featured-article {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 56px;
  transition: box-shadow 0.2s;
}
.featured-article:hover {
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.08);
}
.featured-img {
  height: 380px;
  overflow: hidden;
  position: relative;
}
.featured-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.featured-article:hover .featured-img img {
  transform: scale(1.03);
}
.featured-body {
  padding: 44px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.featured-tag {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 10px;
}
.featured-title {
  font-size: 28px;
  font-weight: 800;
  color: var(--ink);
  line-height: 1.25;
  letter-spacing: -0.01em;
  margin-bottom: 14px;
}
.featured-excerpt {
  font-size: 14.5px;
  color: var(--mist);
  line-height: 1.75;
  margin-bottom: 24px;
}
.featured-meta {
  font-size: 12px;
  color: var(--mist);
  margin-bottom: 20px;
}

/* ═══════════════════════════════════
   TARJETA DE ARTÍCULO (blog)
   ═══════════════════════════════════ */
.article-card {
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  cursor: pointer;
  height: 100%;
}
.article-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}
.article-thumb {
  height: 180px;
  overflow: hidden;
  background: linear-gradient(135deg, #d0dde8, #b8cdd9);
}
.article-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.article-card:hover .article-thumb img {
  transform: scale(1.04);
}
.article-body {
  padding: 20px 22px 24px;
}
.article-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 6px;
}
.article-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.35;
  margin-bottom: 8px;
}
.article-excerpt {
  font-size: 13px;
  color: var(--mist);
  line-height: 1.6;
  margin-bottom: 12px;
}
.article-meta {
  font-size: 11px;
  color: var(--mist);
}
.article-read {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--teal);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 12px;
  text-decoration: none;
}
.placeholder-thumb {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #c8d8e4, #b2c8d8);
  display: flex;
  align-items: center;
  justify-content: center;
}
.placeholder-thumb span {
  font-size: 10.5px;
  color: #8faabb;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ═══════════════════════════════════
   HERO POST (single de blog)
   ═══════════════════════════════════ */
.post-hero-content {
  position: relative;
  z-index: 3;
  max-width: 760px;
  margin: 0 auto;
}
.post-hero-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  margin-bottom: 20px;
  transition: color 0.15s;
}
.post-hero-back:hover {
  color: #fff;
}
.post-hero-tag {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 12px;
}
.post-hero-content h1 {
  font-size: 42px;
  font-weight: 900;
  color: #fff;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  max-width: 640px;
}
.post-hero-meta {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.45);
}

/* ═══════════════════════════════════
   CUERPO DEL ARTÍCULO (single de blog)
   ═══════════════════════════════════ */
.post-body {
  max-width: 720px;
  margin: 0 auto;
}
.post-body h2 {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1.3;
  margin: 40px 0 16px;
}
.post-body h2:first-child {
  margin-top: 0;
}
.post-body p {
  font-size: 15px;
  color: var(--slate);
  line-height: 1.8;
  margin-bottom: 20px;
}
.post-body p strong {
  color: var(--ink);
  font-weight: 600;
}
.post-body ul {
  margin: 0 0 20px;
  padding-left: 20px;
}
.post-body li {
  font-size: 14.5px;
  color: var(--slate);
  line-height: 1.75;
  margin-bottom: 8px;
}
.post-body li strong {
  color: var(--ink);
  font-weight: 600;
}
.post-body blockquote {
  border-left: 3px solid var(--teal);
  padding: 4px 0 4px 20px;
  margin: 28px 0;
  font-size: 17px;
  font-style: italic;
  color: var(--ink);
  line-height: 1.6;
}
.post-summary {
  background: var(--teal-light);
  border: 1px solid rgba(27, 175, 196, 0.25);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  margin-bottom: 36px;
}
.post-summary .post-summary-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal-d);
  margin-bottom: 8px;
}
.post-summary .post-summary-text {
  font-size: 15px;
  color: var(--ink);
  line-height: 1.7;
  margin-bottom: 0;
}

/* ═══════════════════════════════════
   FOOTER
   ═══════════════════════════════════ */
footer {
  background: var(--dark);
  padding: 56px 56px 32px;
}
.foot-top {
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  margin-bottom: 24px;
}
.foot-logo-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.foot-logo-img {
  height: 56px;
  width: auto;
  filter: brightness(1.12);
}
.foot-brand p {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
}
.foot-col h4 {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.48);
  margin-bottom: 14px;
}
.foot-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.foot-col li {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  transition: color 0.1s;
}
.foot-col li:hover {
  color: #fff;
}
.foot-col li a {
  color: inherit;
  text-decoration: none;
}
.foot-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.foot-copy {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.42);
}
.foot-social {
  display: flex;
  gap: 8px;
}
.soc {
  width: 30px;
  height: 30px;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.05);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.1s;
}
.soc:hover {
  background: rgba(255, 255, 255, 0.1);
}
.soc svg {
  width: 12px;
  height: 12px;
  fill: rgba(255, 255, 255, 0.35);
}

/* ═══════════════════════════════════
   HERO HOME (especial)
   ═══════════════════════════════════ */
.hero-home {
  position: relative;
  background: var(--dark);
}

.hero-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  min-height: 580px;
}
.hero-home::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.04;
  pointer-events: none;
  mix-blend-mode: screen;
}
.hero-content {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 72px 56px;
  max-width: 860px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
}
.hero-eyebrow-dot {
  position: relative;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 10px rgba(27, 175, 196, 0.6);
}
.hero-eyebrow-dot::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--teal);
  animation: hero-eyebrow-ping 1.8s cubic-bezier(0, 0, 0.2, 1) infinite;
}
@keyframes hero-eyebrow-ping {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }
  75%,
  100% {
    transform: scale(2.6);
    opacity: 0;
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero-eyebrow-dot::after {
    animation: none;
  }
}
.hero-eyebrow span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
}
.hero-content h1 {
  font-size: 60px;
  font-weight: 900;
  color: #fff;
  line-height: 1.04;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}
.hero-content h1 em {
  font-style: italic;
  color: var(--teal);
}
.hero-tagline {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.65;
  margin-bottom: 30px;
  max-width: 600px;
}
.hero-tagline strong {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
}
.hero-proof {
  display: flex;
  gap: 0;
  margin-bottom: 32px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 11px;
  overflow: hidden;
  width: fit-content;
}
.hproof-item {
  padding: 18px 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}
.hproof-item:last-child {
  border-right: none;
}
.hproof-num {
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.02em;
}
.hproof-lbl {
  font-size: 10.5px;
  color: rgba(255, 255, 255, 0.35);
  margin-top: 3px;
  letter-spacing: 0.02em;
}

/* Home + próstata hero: prueba social sin caja/borde, textos más grandes y blancos */
.hero-home .hero-proof,
.prostata-hero .hero-proof {
  gap: 44px;
  border: none;
  border-radius: 0;
  overflow: visible;
}
.hero-home .hproof-item,
.prostata-hero .hproof-item {
  padding: 0;
  border-right: none;
  background: none;
}
.hero-home .hproof-num,
.prostata-hero .hproof-num {
  font-size: 40px;
}
.hero-home .hproof-lbl,
.prostata-hero .hproof-lbl {
  font-size: 17px;
  color: #fff;
  margin-top: 6px;
}
.hero-ctas {
  display: flex;
  gap: 12px;
  align-items: center;
}
/* Foto como fondo full-bleed desenfocado (backdrop atmosférico) */
.hero-photo-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero-photo-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(
      ellipse 70% 80% at 50% 50%,
      rgba(9, 21, 32, 0.9) 0%,
      rgba(9, 21, 32, 0.72) 55%,
      rgba(9, 21, 32, 0.6) 100%
    ),
    linear-gradient(to bottom, rgba(9, 21, 32, 0.45), rgba(9, 21, 32, 0.55));
}
.hero-dr-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
  filter: blur(8px) saturate(1.05);
  transform: scale(1.14);
}
.hero-photo-tag-wrap {
  position: absolute;
  bottom: 26px;
  right: 32px;
  z-index: 3;
}
.hero-photo-tag {
  display: inline-block;
  background: rgba(27, 175, 196, 0.15);
  border: 1px solid rgba(27, 175, 196, 0.25);
  backdrop-filter: blur(8px);
  padding: 9px 14px;
  border-radius: 9px;
  font-size: 10.5px;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ═══════════════════════════════════
   HERO UBICACIONES (especial)
   ═══════════════════════════════════ */
.ubi-hero {
  background: var(--dark);
  padding: 56px 56px 52px;
  position: relative;
  overflow: hidden;
}
.ubi-hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.ubi-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
  filter: blur(4px);
  transform: scale(1.06);
  display: block;
}
.ubi-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(9, 21, 32, 0.78),
    rgba(9, 21, 32, 0.88)
  );
  z-index: 1;
  pointer-events: none;
}
.ubi-hero-noise {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.04;
  pointer-events: none;
  mix-blend-mode: screen;
  z-index: 2;
}
.ubi-hero-content {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}
.ubi-hero-content .hero-eyebrow {
  margin-bottom: 16px;
}
.ubi-hero-content h1 {
  font-size: 52px;
  font-weight: 900;
  color: #fff;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}
.ubi-hero-content p {
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 28px;
}
.ubi-hero-trust {
  display: flex;
  gap: 32px;
  margin-top: 36px;
  position: relative;
  z-index: 3;
  justify-content: center;
  flex-wrap: wrap;
}
.ubi-hero-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
}
.ubi-hero-trust-item span:first-child {
  font-size: 11px;
  color: var(--teal);
}
.ubi-hero-trust-item span:last-child {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.62);
}

/* ═══════════════════════════════════
   SEDES (detalle de ubicación)
   ═══════════════════════════════════ */
.sede-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 48px 0 40px;
}
.sede-divider-line {
  flex: 1;
  height: 1px;
  background: var(--line);
}
.sede-divider-num {
  font-size: 13px;
  font-weight: 700;
  color: var(--teal);
  letter-spacing: 0.06em;
}
.ubi-detail {
  display: grid;
  grid-template-columns: 480px 1fr;
  gap: 0;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
}
.ubi-detail-map {
  height: 100%;
  min-height: 320px;
  background: linear-gradient(135deg, #d0dde8, #b8cdd9);
  position: relative;
  overflow: hidden;
}
.ubi-detail-map iframe {
  display: block;
}
.ubi-detail-info {
  padding: 40px 44px;
  background: var(--white);
}
.ubi-detail-info .ubi-zone {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 4px;
}
.ubi-detail-info h2 {
  font-size: 30px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 20px;
}
.info-row {
  display: flex;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.info-row:last-child {
  border-bottom: none;
}
.info-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--mist);
  width: 120px;
  flex-shrink: 0;
  padding-top: 1px;
}
.info-value {
  font-size: 14px;
  color: var(--slate);
  line-height: 1.55;
}
.info-value strong {
  color: var(--ink);
  font-weight: 600;
}
.zone-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 2px;
}
.zone-chip {
  background: var(--fog);
  border: 1px solid var(--line);
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 12px;
  color: var(--slate);
}
.ubi-actions {
  display: flex;
  gap: 10px;
  margin-top: 24px;
}

/* ═══════════════════════════════════
   ASEGURADORAS (ubicaciones)
   ═══════════════════════════════════ */
.asegura-card {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 30px 24px;
  min-height: 96px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  box-shadow: var(--shadow-card);
  transition:
    transform 0.2s,
    box-shadow 0.2s,
    border-color 0.2s;
  height: 100%;
}
.asegura-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card-hover);
  border-color: var(--teal);
}
.asegura-card img {
  max-height: 38px;
  max-width: 140px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(1) opacity(0.6);
  transition: filter 0.25s;
}
.asegura-card:hover img {
  filter: grayscale(0) opacity(1);
}

/* ═══════════════════════════════════
   HERO PERFIL (especial)
   ═══════════════════════════════════ */
.hero-perfil {
  background: var(--dark);
}

.hero-wrapper-perfil {
  display: grid;
  grid-template-columns: 1fr 520px;
  min-height: 580px;
  position: relative;
  overflow: hidden;
  align-items: center;
}

.hero-perfil-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}
.hero-perfil-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.22;
  filter: blur(10px);
  transform: scale(1.12);
  display: block;
}
.hero-perfil-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(9, 21, 32, 0.95) 30%,
    rgba(9, 21, 32, 0.6) 65%,
    rgba(9, 21, 32, 0.35)
  );
}
.hero-perfil-glow {
  position: absolute;
  left: -120px;
  top: -80px;
  width: 520px;
  height: 520px;
  background: radial-gradient(
    circle,
    rgba(27, 175, 196, 0.1) 0%,
    transparent 70%
  );
  z-index: 0;
  pointer-events: none;
}
.hero-perfil::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.04;
  pointer-events: none;
  mix-blend-mode: screen;
}
.hero-perfil-content {
  position: relative;
  z-index: 2;
  padding: 64px 24px 64px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
  max-width: 640px;
}
.hero-perfil-content::before {
  content: "";
  position: absolute;
  left: 56px;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 148px;
  border-radius: 3px;
  background: linear-gradient(to bottom, transparent, var(--teal), transparent);
  opacity: 0.6;
}
.hero-perfil-content > * {
  padding-left: 26px;
}
.hero-perfil-photo {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 56px;
}
.hero-perfil-eyebrow {
  margin-bottom: 20px;
}
.hero-perfil-content h1 {
  font-size: 50px;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.hero-perfil-content p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 28px;
}
.hero-perfil-content p strong {
  color: rgba(255, 255, 255, 0.85);
}
.hero-perfil-chips {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.hero-perfil-chip {
  font-size: 11.5px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 20px;
}
.hero-perfil-chip.teal {
  background: rgba(27, 175, 196, 0.12);
  border: 1px solid rgba(27, 175, 196, 0.2);
  color: var(--teal);
}
.hero-perfil-chip.muted {
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.5);
  font-weight: 600;
}
.hero-perfil-ctas {
  display: flex;
  gap: 12px;
}

/* ═══════════════════════════════════
   RETRATO ENMARCADO (perfil)
   ═══════════════════════════════════ */
.portrait-card {
  position: relative;
  width: 100%;
  max-width: 400px;
  aspect-ratio: 5 / 6;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.5);
}
.portrait-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 38% 42%;
  display: block;
  filter: saturate(0.98) contrast(1.02);
}
.portrait-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.06),
    inset 0 -60px 60px -30px rgba(9, 21, 32, 0.7);
  background: linear-gradient(
    to top,
    rgba(9, 21, 32, 0.45) 0%,
    transparent 38%
  );
  pointer-events: none;
}
.portrait-badge {
  position: absolute;
  left: 16px;
  bottom: 16px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(9, 21, 32, 0.6);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 7px 13px;
  border-radius: 30px;
  font-size: 10.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
}
.portrait-badge::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 8px rgba(27, 175, 196, 0.7);
}

/* ═══════════════════════════════════
   FORMACIÓN ACADÉMICA (perfil)
   ═══════════════════════════════════ */
.formacion-item {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.formacion-item:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.form-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--teal);
  margin-top: 4px;
  box-shadow: 0 0 8px rgba(27, 175, 196, 0.4);
  justify-self: center;
}
.formacion-item h3 {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}
.formacion-item span {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.35);
}
.cert-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.cert-card {
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 12px;
  padding: 20px 22px;
  background: rgba(255, 255, 255, 0.03);
}
.cert-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(27, 175, 196, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}
.cert-icon svg {
  width: 19px;
  height: 19px;
  stroke: var(--teal);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.cert-card h3 {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
  line-height: 1.3;
}
.cert-card p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
  line-height: 1.55;
}

/* ═══════════════════════════════════
   ÁREAS DE ESPECIALIZACIÓN (perfil)
   ═══════════════════════════════════ */
.spec-area-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.spec-area {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: var(--white);
}
.spec-area-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
  flex-shrink: 0;
}
.spec-area p {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--slate);
}
.specialty-photo {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  height: 280px;
}
.specialty-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 30% 35%;
}
.specialty-stat {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 16px 18px;
}
.specialty-stat-num {
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1;
}
.specialty-stat-lbl {
  font-size: 11px;
  color: var(--mist);
  margin-top: 3px;
}

/* ═══════════════════════════════════
   QUOTE BLOCK (perfil)
   ═══════════════════════════════════ */
.quote-block {
  background: var(--ink);
  border-radius: 16px;
  padding: 40px 44px;
  position: relative;
  overflow: hidden;
}
.quote-block::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: 24px;
  font-size: 160px;
  font-weight: 900;
  color: rgba(27, 175, 196, 0.06);
  line-height: 1;
  font-family: "Plus Jakarta Sans", sans-serif;
}
.quote-block blockquote {
  font-size: 19px;
  font-style: italic;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.65;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  font-weight: 300;
}
.quote-block cite {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.35);
  font-style: normal;
  position: relative;
  z-index: 1;
}

/* ═══════════════════════════════════
   ¿CUÁNDO ACUDIR? (próstata)
   ═══════════════════════════════════ */
.when-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 64px;
  align-items: start;
}
.when-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.when-item {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.when-item:first-child {
  border-top: 1px solid var(--line);
}
.when-n {
  font-size: 11px;
  font-weight: 700;
  color: var(--teal);
  letter-spacing: 0.02em;
  padding-top: 2px;
}
.when-text {
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.45;
}
.sticky-cta {
  background: var(--ink);
  border-radius: 16px;
  padding: 32px 28px;
  position: sticky;
  top: 88px;
}
.sticky-cta h3 {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 10px;
}
.sticky-cta p {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.7;
  margin-bottom: 24px;
}
.sticky-note {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
  margin-top: 10px;
}

/* ═══════════════════════════════════
   CONDICIONES QUE TRATAMOS (próstata)
   ═══════════════════════════════════ */
.cond-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.cond-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.cond-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}
.cond-thumb {
  height: 160px;
  overflow: hidden;
  position: relative;
}
.cond-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.cond-thumb-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #d0dde8, #b8cdd9);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: #7a9aac;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.cond-body {
  padding: 22px 22px 24px;
}
.cond-tag {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 5px;
}
.cond-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
  line-height: 1.3;
}
.cond-text {
  font-size: 13px;
  color: var(--mist);
  line-height: 1.65;
  margin-bottom: 16px;
}

/* ═══════════════════════════════════
   HERO PRÓSTATA (especial)
   ═══════════════════════════════════ */
.prostata-hero {
  background: var(--dark);
  padding: 80px 56px;
  position: relative;
  overflow: hidden;
  min-height: 380px;
}
.prostata-hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.prostata-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
  filter: blur(4px);
  transform: scale(1.06);
  display: block;
}
.prostata-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 70% 85% at 50% 50%,
      rgba(9, 21, 32, 0.9) 0%,
      rgba(9, 21, 32, 0.72) 55%,
      rgba(9, 21, 32, 0.6) 100%
    ),
    linear-gradient(to bottom, rgba(9, 21, 32, 0.45), rgba(9, 21, 32, 0.55));
  z-index: 1;
  pointer-events: none;
}
.prostata-hero-noise {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.04;
  pointer-events: none;
  mix-blend-mode: screen;
  z-index: 2;
}
.prostata-hero-content {
  position: relative;
  z-index: 3;
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.prostata-hero-content .hero-eyebrow {
  margin-bottom: 18px;
}
.prostata-hero-content h1 {
  font-size: 54px;
  font-weight: 900;
  color: #fff;
  line-height: 1.04;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.prostata-hero-content h1 em {
  font-style: italic;
  color: var(--teal);
}
.prostata-hero-content p {
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  max-width: 560px;
  margin-bottom: 30px;
}
.prostata-hero-content p strong {
  color: rgba(255, 255, 255, 0.85);
}
.prostata-hero-content .hero-proof {
  margin-bottom: 32px;
}
.prostata-hero-ctas {
  display: flex;
  gap: 12px;
  justify-content: center;
}

/* ═══════════════════════════════════
   HERO HOLEP (contenido + imagen)
   ═══════════════════════════════════ */
.hero-holep {
  background: var(--dark);
  min-height: 420px;
  display: grid;
  grid-template-columns: 1fr 560px;
  gap: 0;
  position: relative;
  overflow: hidden;
}
.hero-holep::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.04;
  pointer-events: none;
  mix-blend-mode: screen;
}
.hero-holep-content {
  position: relative;
  z-index: 2;
  padding: 64px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-holep-content h1 {
  font-size: 52px;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}
.hero-holep-content h1 em {
  font-style: italic;
  color: var(--teal);
}
.hero-holep-content p {
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 28px;
}
.hero-holep-content p strong {
  color: rgba(255, 255, 255, 0.7);
}
.hero-holep .stats-row {
  margin-bottom: 32px;
}
.hero-holep-ctas {
  display: flex;
  gap: 12px;
}
.hero-holep-img {
  position: relative;
  overflow: hidden;
}
.hero-holep-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-holep-img::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 30%;
  height: 100%;
  background: linear-gradient(to right, var(--dark), transparent);
  z-index: 1;
}

/* ═══════════════════════════════════
   SPLIT HERO (HPB / Síntomas)
   ═══════════════════════════════════ */
.split-hero {
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

.hero-hpn-wrapper {
  padding: 64px 56px;
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 56px;
  align-items: center;
  min-height: 340px;
}
.split-hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.split-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
  filter: blur(4px);
  transform: scale(1.06);
  display: block;
}
.split-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(9, 21, 32, 0.9) 0%,
    rgba(9, 21, 32, 0.55) 50%,
    rgba(9, 21, 32, 0.2) 100%
  );
  z-index: 1;
  pointer-events: none;
}
.split-hero-noise {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.04;
  pointer-events: none;
  mix-blend-mode: screen;
  z-index: 2;
}
.split-hero-content {
  position: relative;
  z-index: 2;
}
.split-hero-content .hero-eyebrow {
  margin-bottom: 18px;
}
.split-hero-content h1 {
  font-size: 50px;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.split-hero-content h1 em {
  font-style: italic;
  color: var(--teal);
}
.split-hero-content p {
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.7;
  max-width: 500px;
  margin-bottom: 28px;
}
.split-hero-content p strong {
  color: rgba(255, 255, 255, 0.7);
}
.split-hero-ctas {
  display: flex;
  gap: 12px;
}
.split-hero-aside {
  position: relative;
  z-index: 2;
}
.split-hero-imgcard {
  border-radius: 14px;
  overflow: hidden;
  height: 240px;
}
.split-hero-imgcard img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.split-hero-imgcard::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(9, 21, 32, 0.4), transparent);
}
.hpb-hero-cards {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.hpb-stat-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 12px;
  padding: 18px 20px;
}
.hpb-stat-card.teal {
  background: rgba(27, 175, 196, 0.1);
  border-color: rgba(27, 175, 196, 0.2);
}
.hpb-stat-num {
  font-size: 28px;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1;
}
.hpb-stat-card.teal .hpb-stat-num {
  color: var(--teal);
}
.hpb-stat-lbl {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.35);
  margin-top: 3px;
}
.hpb-stat-card p {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.55;
}
.hpb-stat-card p strong {
  color: rgba(255, 255, 255, 0.7);
}

/* ═══════════════════════════════════
   CTA CARD (tarjeta oscura WhatsApp)
   ═══════════════════════════════════ */
.cta-card {
  background: var(--ink);
  border-radius: 16px;
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
  width: 100%;
}
.cta-card.sticky {
  position: sticky;
  top: 88px;
}
.cta-card-glow {
  position: absolute;
  right: -40px;
  top: -40px;
  width: 220px;
  height: 220px;
  background: radial-gradient(
    circle,
    rgba(27, 175, 196, 0.08) 0%,
    transparent 70%
  );
}
.cta-card > * {
  position: relative;
  z-index: 1;
}
.cta-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 10px;
}
.cta-card-text {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.7;
  margin-bottom: 24px;
}
.cta-card-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cta-card-note {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.25);
  text-align: center;
}

/* ═══════════════════════════════════
   PÁGINA HOLEP
   ═══════════════════════════════════ */
.holep-bullets {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 20px 0 28px;
}
.hb {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.hb-dot {
  width: 20px;
  height: 20px;
  border-radius: 5px;
  flex-shrink: 0;
  background: rgba(27, 175, 196, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.hb-dot svg {
  width: 10px;
  height: 10px;
  stroke: var(--teal);
  fill: none;
  stroke-width: 2.5;
}
.hb p {
  font-size: 14px;
  color: var(--slate);
  line-height: 1.55;
  margin-bottom: 0;
}
.hb p strong {
  color: var(--ink);
}
.also-strip {
  background: var(--fog);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 13px;
  color: var(--mist);
  margin-bottom: 24px;
}
.also-strip strong {
  color: var(--slate);
  font-weight: 600;
}
.compare-wrap {
  overflow-x: auto;
}
.step-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
}
.step-card {
  background: var(--fog);
  padding: 32px 26px;
}
.step-num {
  font-size: 44px;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 10px;
}
.step-bar {
  width: 24px;
  height: 3px;
  background: var(--teal);
  border-radius: 2px;
  margin-bottom: 16px;
}
.step-card h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
  line-height: 1.3;
}
.step-card p {
  font-size: 13px;
  color: var(--mist);
  line-height: 1.65;
}

/* ═══════════════════════════════════
   PÁGINA HPB
   ═══════════════════════════════════ */
.fact-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  margin-top: 24px;
}
.fact-item {
  background: var(--white);
  padding: 24px 22px;
}
.fog .fact-item {
  background: var(--fog);
}
.fact-check {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background: rgba(27, 175, 196, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}
.fact-check svg {
  width: 11px;
  height: 11px;
  stroke: var(--teal);
  fill: none;
  stroke-width: 2.5;
}
.fact-item p {
  font-size: 13.5px;
  color: var(--slate);
  line-height: 1.55;
  margin-bottom: 0;
}
.fact-item strong {
  color: var(--ink);
}
.symptom-numbered {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
}
.sym-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 12px;
  padding: 24px 20px;
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
}
.sym-item:nth-child(2n) {
  border-right: none;
}
.sym-item:nth-last-child(-n + 2) {
  border-bottom: none;
}
.sym-n {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: rgba(27, 175, 196, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: var(--teal);
  flex-shrink: 0;
}
.sym-title {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 4px;
}
.sym-desc {
  font-size: 13px;
  color: var(--mist);
  line-height: 1.5;
}
.dx-steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
}
.dx-step {
  background: var(--white);
  padding: 28px 24px;
}
.dx-num {
  font-size: 11px;
  font-weight: 700;
  color: var(--teal);
  letter-spacing: 0.06em;
  margin-bottom: 10px;
}
.dx-step h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
}
.dx-step p {
  font-size: 13px;
  color: var(--mist);
  line-height: 1.6;
}
.tx-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.tx-card {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 32px 28px;
  background: var(--white);
}
.tx-card.featured {
  border-color: var(--teal);
  background: rgba(27, 175, 196, 0.03);
}
.tx-label {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mist);
  margin-bottom: 8px;
}
.tx-card.featured .tx-label {
  color: var(--teal);
}
.tx-card h3 {
  font-size: 19px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 10px;
}
.tx-card p {
  font-size: 13.5px;
  color: var(--mist);
  line-height: 1.65;
}
.tx-link {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--teal);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 12px;
  text-decoration: none;
}

/* ═══════════════════════════════════
   PÁGINA SÍNTOMAS
   ═══════════════════════════════════ */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  margin-top: 32px;
}
.why-item {
  background: var(--white);
  padding: 28px 26px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.why-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
  flex-shrink: 0;
  margin-top: 5px;
}
.why-item p {
  font-size: 14px;
  color: var(--slate);
  line-height: 1.6;
  margin-bottom: 0;
}
.why-item p strong {
  color: var(--ink);
}
.sym-row-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.sym-row {
  display: grid;
  grid-template-columns: 48px 1fr 24px;
  align-items: center;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  transition: padding 0.15s;
  cursor: default;
}
.sym-row:first-child {
  border-top: 1px solid var(--line);
}
.sym-row:hover {
  padding-left: 8px;
}
.sym-row:hover .sym-arrow {
  color: var(--teal);
}
.sym-num {
  font-size: 12px;
  font-weight: 700;
  color: var(--teal);
  letter-spacing: 0.02em;
}
.sym-name {
  font-size: 15.5px;
  font-weight: 500;
  color: var(--ink);
}
.sym-arrow {
  font-size: 18px;
  color: var(--line);
  justify-self: end;
  transition: color 0.15s;
}
.what-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
}
.what-step {
  background: var(--white);
  padding: 36px 30px;
}
.what-num {
  font-size: 48px;
  font-weight: 900;
  color: var(--fog);
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}
.what-bar {
  width: 24px;
  height: 3px;
  background: var(--teal);
  border-radius: 2px;
  margin-bottom: 18px;
}
.what-step h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
  line-height: 1.3;
}
.what-step p {
  font-size: 13.5px;
  color: var(--mist);
  line-height: 1.65;
}

/* ═══════════════════════════════════
   RESPONSIVE (mobile / tablet)
   ═══════════════════════════════════ */
@media (max-width: 991.98px) {
  body {
    min-width: 0;
  }
  .page {
    width: 100%;
    min-width: 0;
  }
  .trust-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .t-sep {
    display: none;
  }
  .trust-cta {
    margin-left: 0;
  }
  .hero-ctas {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }
  .hero-ctas .btn-wa {
    justify-content: center;
  }
  .hero-ctas .btn-ghost {
    text-align: center;
  }
  .foot-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .insur-wrapper {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }
  .insur-label,
  .insur-more {
    white-space: normal;
    text-align: center;
    padding-left: 0;
  }
  .section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .section-header-note {
    text-align: left;
    max-width: none;
  }
  .cta-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
  .cta-banner-actions {
    flex-wrap: wrap;
  }

  /* Próstata: hero */
  .hero-proof {
    flex-direction: column;
    width: 100%;
  }
  .hproof-item {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  .hproof-item:last-child {
    border-bottom: none;
  }
  .hero-home .hproof-item,
  .prostata-hero .hproof-item {
    border-bottom: none;
    padding: 0;
  }
  .hero-home .hero-proof,
  .prostata-hero .hero-proof {
    gap: 20px;
  }
  .prostata-hero-ctas {
    flex-direction: column;
    width: 100%;
  }
  .prostata-hero-ctas .btn-wa {
    justify-content: center;
  }
  .prostata-hero-ctas .btn-ghost {
    text-align: center;
  }

  /* Próstata: ¿Qué es la próstata? */
  .two-col {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .two-col-img {
    height: 260px;
  }

  /* Próstata: ¿Cuándo acudir? */
  .when-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .sticky-cta {
    position: static;
  }

  /* Próstata: sección especialista (CTA final) */
  .specialist-card {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .spec-photo {
    margin: 0 auto;
  }
  .spec-badges {
    justify-content: center;
  }
  .spec-ctas {
    flex-direction: column;
    align-items: stretch;
  }
  .spec-ctas .btn-wa,
  .spec-ctas .btn-white-outline {
    justify-content: center;
  }

  /* Ubicaciones: tarjetas de sede */
  .ubi-detail {
    grid-template-columns: 1fr;
  }
  .ubi-detail-map {
    min-height: 220px;
  }
  .ubi-detail-info {
    padding: 28px 24px;
  }
  .info-row {
    flex-direction: column;
    gap: 4px;
  }
  .info-label {
    width: auto;
  }
  .ubi-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .ubi-actions .btn-teal,
  .ubi-actions .btn-outline {
    justify-content: center;
  }

  /* Perfil: hero */
  .hero-wrapper-perfil {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero-perfil-content {
    padding: 48px 24px;
    align-items: flex-start;
  }
  .hero-perfil-content::before {
    display: none;
  }
  .hero-perfil-content > * {
    padding-left: 0;
  }
  .hero-perfil-content h1 {
    font-size: 36px;
  }
  .hero-perfil-photo {
    padding: 0 24px 48px;
  }
  .hero-perfil-ctas {
    flex-direction: column;
    width: 100%;
  }
  .hero-perfil-ctas .btn-wa {
    justify-content: center;
  }
  .hero-perfil-ctas .btn-ghost {
    text-align: center;
  }

  /* 404 */
  .notfound-code {
    font-size: 88px;
  }
  .notfound-content h1 {
    font-size: 26px;
  }
  .notfound-ctas {
    flex-direction: column;
    align-items: stretch;
  }
  .notfound-ctas .btn-wa {
    justify-content: center;
  }
  .notfound-links {
    gap: 16px;
  }

  /* Blog */
  .featured-article {
    grid-template-columns: 1fr;
  }
  .featured-img {
    height: 240px;
  }
  .featured-body {
    padding: 28px 24px;
  }
  .blog-hero-content h1 {
    font-size: 32px;
  }
  .post-hero-content h1 {
    font-size: 28px;
  }

  /* HoLEP: hero */
  .hero-holep {
    grid-template-columns: 1fr;
  }
  .hero-holep-content {
    padding: 48px 24px;
  }
  .hero-holep-content h1 {
    font-size: 38px;
  }
  .hero-holep-img {
    display: none;
  }
  .hero-holep .stats-row {
    flex-direction: column;
    width: 100%;
  }
  .hero-holep .stat-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  .hero-holep .stat-item:last-child {
    border-bottom: none;
  }
  .hero-holep-ctas {
    flex-direction: column;
    width: 100%;
  }
  .hero-holep-ctas .btn-wa {
    justify-content: center;
  }
  .hero-holep-ctas .btn-ghost {
    text-align: center;
  }

  /* HPB / Síntomas: split hero */
  .hero-hpn-wrapper {
    grid-template-columns: 1fr;
    padding: 48px 0;
    gap: 32px;
  }
  .split-hero-content h1 {
    font-size: 36px;
  }
  .split-hero-ctas {
    flex-direction: column;
    width: 100%;
  }
  .split-hero-ctas .btn-wa {
    justify-content: center;
  }
  .split-hero-ctas .btn-ghost {
    text-align: center;
  }

  /* CTA card oscura */
  .cta-card.sticky {
    position: static;
  }
}

@media (max-width: 767.98px) {
  .insur-logo:nth-child(2n) {
    border-right: none;
  }
  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .b1,
  .b2,
  .b3,
  .b4 {
    grid-column: span 1;
    min-height: auto;
  }
  .b5,
  .b6,
  .b7 {
    grid-column: span 2;
  }
  .bento-big-num {
    font-size: 40px;
  }
  .bento {
    padding-left: 0;
    padding-right: 0;
  }

  /* HoLEP */
  .step-grid {
    grid-template-columns: 1fr;
  }

  /* HPB */
  .fact-strip {
    grid-template-columns: 1fr;
  }
  .symptom-numbered {
    grid-template-columns: 1fr;
  }
  .sym-item {
    border-right: none;
  }
  .sym-item:nth-last-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }
  .sym-item:last-child {
    border-bottom: none;
  }
  .dx-steps {
    grid-template-columns: 1fr;
  }
  .tx-grid {
    grid-template-columns: 1fr;
  }

  /* Síntomas */
  .why-grid {
    grid-template-columns: 1fr;
  }
  .what-steps {
    grid-template-columns: 1fr;
  }
}
