    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --pink:        #D4608C;
      --pink-light:  #FDE8F2;
      --pink-mid:    #F5AECF;
      --navy:        #1B2D6E;
      --navy-light:  #2A4099;
      --lavender:    #EDE8F8;
      --blue-soft:   #E8EEF8;
      --white:       #FEFEFE;
      --off-white:   #FAF8FC;
      --text:        #1B2D6E;
      --text-muted:  #6874A4;
      --border:      #EAE4F2;
      --radius:      16px;
      --radius-lg:   28px;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Poppins', sans-serif;
      color: var(--text);
      background: var(--white);
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
    }

    /* ── UTILITIES ─────────────────────────────── */
    .container {
      width: 100%;
      max-width: 1160px;
      margin: 0 auto;
      padding: 0 24px;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-family: 'Poppins', sans-serif;
      font-weight: 600;
      font-size: 0.9rem;
      padding: 12px 26px;
      border-radius: 100px;
      border: none;
      cursor: pointer;
      text-decoration: none;
      transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
      white-space: nowrap;
    }
    .btn:hover { transform: translateY(-2px); }

    .btn-primary {
      background: var(--pink);
      color: #fff;
      box-shadow: 0 4px 18px oklch(65% 0.18 350 / 0.35);
    }
    .btn-primary:hover {
      background: #C0527E;
      box-shadow: 0 8px 28px oklch(65% 0.18 350 / 0.42);
    }

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

    .btn-navy {
      background: var(--navy);
      color: #fff;
      box-shadow: 0 4px 18px oklch(25% 0.12 255 / 0.28);
    }
    .btn-navy:hover {
      background: var(--navy-light);
      box-shadow: 0 8px 28px oklch(25% 0.12 255 / 0.36);
    }

    .btn-white {
      background: #fff;
      color: var(--navy);
    }
    .btn-white:hover { background: var(--pink-light); }

    .section-tag {
      display: inline-block;
      font-size: 0.75rem;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--pink);
      background: var(--pink-light);
      padding: 5px 14px;
      border-radius: 100px;
      margin-bottom: 16px;
    }

    .section-title {
      font-size: clamp(1.8rem, 4vw, 2.6rem);
      font-weight: 700;
      color: var(--navy);
      line-height: 1.2;
      text-wrap: pretty;
    }

    .section-sub {
      font-size: 1.05rem;
      color: var(--text-muted);
      max-width: 560px;
      text-wrap: pretty;
    }

    /* ── BLOB SHAPES ───────────────────────────── */
    .blob {
      position: absolute;
      border-radius: 60% 40% 70% 30% / 50% 60% 40% 50%;
      pointer-events: none;
      opacity: 0.55;
    }

    /* ── NAV ───────────────────────────────────── */
    header {
      position: sticky;
      top: 0;
      z-index: 100;
      background: rgba(254,254,254,0.92);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--border);
    }

    nav {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 68px;
    }

    .nav-logo {
      display: flex;
      flex-direction: column;
      line-height: 1.15;
      text-decoration: none;
    }
    .nav-logo span:first-child {
      font-weight: 700;
      font-size: 1rem;
      color: var(--navy);
    }
    .nav-logo span:last-child {
      font-size: 0.72rem;
      color: var(--text-muted);
      font-weight: 400;
      letter-spacing: 0.02em;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 32px;
      list-style: none;
    }
    .nav-links a {
      text-decoration: none;
      color: var(--text-muted);
      font-size: 0.9rem;
      font-weight: 500;
      transition: color 0.15s;
    }
    .nav-links a:hover { color: var(--pink); }

    .nav-right {
      display: flex;
      align-items: center;
      gap: 24px;
    }

    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      background: none;
      border: none;
      padding: 4px;
    }
    .hamburger span {
      display: block;
      width: 24px;
      height: 2px;
      background: var(--navy);
      border-radius: 2px;
      transition: transform 0.25s, opacity 0.25s;
    }
    .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .hamburger.open span:nth-child(2) { opacity: 0; }
    .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    .mobile-nav {
      display: none;
      flex-direction: column;
      gap: 0;
      background: var(--white);
      border-top: 1px solid var(--border);
      padding: 12px 0 20px;
    }
    .mobile-nav.open { display: flex; }
    .mobile-nav a {
      text-decoration: none;
      color: var(--text);
      font-size: 1rem;
      font-weight: 500;
      padding: 12px 24px;
      transition: background 0.15s;
    }
    .mobile-nav a:hover { background: var(--pink-light); color: var(--pink); }
    .mobile-nav .btn { margin: 12px 24px 0; width: calc(100% - 48px); justify-content: center; }

    /* ── HERO ──────────────────────────────────── */
    #inicio {
      position: relative;
      overflow: hidden;
      background: var(--off-white);
      padding: 72px 0 0;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 48px;
      align-items: end;
    }

    .hero-content { padding-bottom: 72px; }

    .hero-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 0.8rem;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--pink);
      margin-bottom: 20px;
    }
    .hero-eyebrow::before {
      content: '';
      display: inline-block;
      width: 28px;
      height: 2px;
      background: var(--pink);
      border-radius: 2px;
    }

    .hero-title {
      font-size: clamp(2rem, 5.5vw, 3.6rem);
      font-weight: 800;
      color: var(--navy);
      line-height: 1.1;
      text-wrap: pretty;
      margin-bottom: 20px;
    }
    .hero-title em {
      font-style: normal;
      color: var(--pink);
    }

    .hero-sub {
      font-size: 1.05rem;
      color: var(--text-muted);
      max-width: 500px;
      margin-bottom: 36px;
      text-wrap: pretty;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      align-items: center;
    }

    .hero-social-proof {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-top: 36px;
    }
    .proof-avatars {
      display: flex;
    }
    .proof-avatar {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      border: 2px solid var(--white);
      background: var(--lavender);
      margin-left: -8px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.8rem;
      font-weight: 600;
      color: var(--navy);
      overflow: hidden;
    }
    .proof-avatar:first-child { margin-left: 0; }
    .proof-text { font-size: 0.82rem; color: var(--text-muted); }
    .proof-text strong { color: var(--navy); font-weight: 600; }

    /* Hero image */
    .hero-image-wrap {
      position: relative;
      align-self: end;
      display: flex;
      justify-content: center;
    }

    .hero-photo-placeholder {
      width: 100%;
      max-width: 420px;
      aspect-ratio: 3/4;
      border-radius: var(--radius-lg) var(--radius-lg) 0 0;
      background: linear-gradient(160deg, var(--lavender) 0%, var(--pink-light) 100%);
      position: relative;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: flex-end;
    }

    .placeholder-photo {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .hero-badge {
      position: absolute;
      bottom: 40px;
      right: -12px;
      background: var(--white);
      border-radius: var(--radius);
      padding: 14px 18px;
      box-shadow: 0 8px 32px oklch(25% 0.12 255 / 0.12);
      display: flex;
      flex-direction: column;
      gap: 2px;
      min-width: 160px;
    }
    .hero-badge strong {
      font-size: 1.2rem;
      font-weight: 700;
      color: var(--navy);
    }
    .hero-badge span {
      font-size: 0.75rem;
      color: var(--text-muted);
    }

    .hero-badge-2 {
      position: absolute;
      top: 40px;
      left: -12px;
      background: var(--pink);
      border-radius: var(--radius);
      padding: 12px 16px;
      box-shadow: 0 8px 28px oklch(65% 0.18 350 / 0.3);
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .hero-badge-2 .icon { font-size: 1.4rem; }
    .hero-badge-2 .text { display: flex; flex-direction: column; gap: 1px; }
    .hero-badge-2 strong { font-size: 0.78rem; font-weight: 600; color: #fff; }
    .hero-badge-2 span { font-size: 0.68rem; color: rgba(255,255,255,0.8); }

    /* Hero decorative blobs */
    .hero-blob-1 {
      width: 340px;
      height: 340px;
      background: var(--pink-light);
      top: -80px;
      right: -80px;
    }
    .hero-blob-2 {
      width: 200px;
      height: 200px;
      background: var(--lavender);
      bottom: 60px;
      left: -60px;
    }

    /* ── TRUST BAR ─────────────────────────────── */
    #trust {
      background: var(--white);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      padding: 32px 0;
    }

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

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

    .trust-logo-item {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 6px;
      opacity: 0.7;
      transition: opacity 0.2s;
      text-decoration: none;
    }
    .trust-logo-item:hover { opacity: 1; }

    .trust-logo-box {
      height: 40px;
      padding: 8px 20px;
      background: var(--blue-soft);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .trust-logo-box span {
      font-size: 0.82rem;
      font-weight: 700;
      color: var(--navy);
      letter-spacing: 0.03em;
    }

    /* Doctoralia green */
    .trust-logo-box.doctoralia { background: #E8F4EE; }
    .trust-logo-box.doctoralia span { color: #1A7A45; }
    /* TopDoctors blue */
    .trust-logo-box.topdoctors { background: #E8EEF8; }
    .trust-logo-box.topdoctors span { color: var(--navy); }
    /* Hospital Ángeles / Español navy */
    .trust-logo-box.angeles { background: var(--lavender); }
    .trust-logo-box.angeles span { color: var(--navy); }
    /* Additional institution logos */
    .trust-logo-box.espanol { background: var(--lavender); }
    .trust-logo-box.espanol span { color: var(--navy); }
    .trust-logo-box.dexeus { background: var(--pink-light); }
    .trust-logo-box.dexeus span { color: var(--pink); }
    .trust-logo-box.itam { background: var(--blue-soft); }
    .trust-logo-box.itam span { color: var(--navy); }
    .trust-logo-box.inper { background: #E8F4EE; }
    .trust-logo-box.inper span { color: #1A6A3A; }
    .trust-logo-box.redlara { background: var(--blue-soft); }
    .trust-logo-box.redlara span { color: var(--navy); }
    .trust-logo-box.cmgo { background: var(--lavender); }
    .trust-logo-box.cmgo span { color: var(--navy); }

    .trust-section-title {
      text-align: center;
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--text-muted);
      margin-bottom: 24px;
    }

    /* ── SERVICES ──────────────────────────────── */
    #servicios {
      padding: 96px 0;
      background: var(--lavender);
      position: relative;
      overflow: hidden;
    }

    .services-header {
      text-align: center;
      margin-bottom: 56px;
    }
    .services-header .section-sub { margin: 14px auto 0; }

    .services-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 20px;
    }

    .service-card {
      background: var(--white);
      border-radius: var(--radius-lg);
      padding: 32px 28px;
      border: 1px solid var(--border);
      box-shadow: 0 2px 14px oklch(25% 0.12 255 / 0.08);
      transition: transform 0.22s ease, box-shadow 0.22s ease;
      position: relative;
      overflow: hidden;
    }
    .service-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      border-radius: var(--radius-lg) var(--radius-lg) 0 0;
      background: var(--pink);
      opacity: 0;
      transition: opacity 0.2s;
    }
    .service-card:hover { transform: translateY(-5px); box-shadow: 0 16px 48px oklch(25% 0.12 255 / 0.1); }
    .service-card:hover::before { opacity: 1; }

    .service-icon {
      width: 56px;
      height: 56px;
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 20px;
      font-size: 1.5rem;
    }

    .service-card h3 {
      font-size: 1.05rem;
      font-weight: 700;
      color: var(--navy);
      margin-bottom: 8px;
    }
    .service-card p {
      font-size: 0.88rem;
      color: var(--text-muted);
      line-height: 1.65;
    }

    .service-link {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: 0.82rem;
      font-weight: 600;
      color: var(--pink);
      text-decoration: none;
      margin-top: 16px;
      transition: gap 0.15s;
    }
    .service-link:hover { gap: 10px; }

    /* card accent colors */
    .card-pink .service-icon   { background: var(--pink-light); }
    .card-navy .service-icon   { background: var(--blue-soft); }
    .card-lav  .service-icon   { background: var(--lavender); }

    /* ── ABOUT ─────────────────────────────────── */
    #sobre-mi {
      padding: 96px 0;
      background: var(--white);
    }

    .about-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 56px;
      align-items: center;
    }

    .about-photo-wrap {
      position: relative;
    }

    .about-photo-placeholder {
      width: 100%;
      max-width: 480px;
      aspect-ratio: 4/5;
      border-radius: var(--radius-lg);
      background: linear-gradient(140deg, var(--lavender) 0%, var(--pink-light) 100%);
      position: relative;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: flex-end;
      margin: 0 auto;
    }

    .about-accent-card {
      position: absolute;
      bottom: -20px;
      right: -16px;
      background: var(--pink);
      color: #fff;
      padding: 20px 24px;
      border-radius: var(--radius);
      box-shadow: 0 8px 28px oklch(65% 0.18 350 / 0.3);
    }
    .about-accent-card strong { display: block; font-size: 1.5rem; font-weight: 800; }
    .about-accent-card span { font-size: 0.78rem; opacity: 0.88; }

    .about-content { max-width: 540px; }

    .about-credentials {
      display: flex;
      flex-direction: column;
      gap: 12px;
      margin: 28px 0 36px;
    }

    .credential-item {
      display: flex;
      align-items: flex-start;
      gap: 12px;
    }
    .credential-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--pink);
      margin-top: 7px;
      flex-shrink: 0;
    }
    .credential-item p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.5; }
    .credential-item p strong { color: var(--navy); font-weight: 600; }

    .about-bio {
      font-size: 0.95rem;
      color: var(--text-muted);
      line-height: 1.75;
      margin-bottom: 32px;
      text-wrap: pretty;
    }

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

    /* ── CONSULTORIOS ──────────────────────────── */
    #consultorios {
      padding: 96px 0;
      background: var(--off-white);
    }

    .locations-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 20px;
    }

    .location-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      padding: 32px 28px;
    }

    .location-card h3 {
      font-size: 1.05rem;
      font-weight: 700;
      color: var(--navy);
      margin-bottom: 10px;
    }

    .location-address {
      font-size: 0.9rem;
      color: var(--text-muted);
      line-height: 1.6;
      margin-bottom: 18px;
    }

    .location-phone {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 0.9rem;
      font-weight: 600;
      color: var(--pink);
      text-decoration: none;
    }
    .location-phone:hover { text-decoration: underline; }

    @media (min-width: 768px) {
      .locations-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
      }
    }

    /* ── CTA BANNER ────────────────────────────── */
    #cta {
      background: var(--navy);
      padding: 80px 0;
      position: relative;
      overflow: hidden;
    }

    .cta-blob-1 {
      width: 400px;
      height: 400px;
      background: oklch(75% 0.12 320 / 0.12);
      top: -120px;
      left: -100px;
    }
    .cta-blob-2 {
      width: 300px;
      height: 300px;
      background: oklch(70% 0.10 260 / 0.1);
      bottom: -100px;
      right: -60px;
    }

    .cta-inner {
      position: relative;
      z-index: 1;
      text-align: center;
    }

    .cta-inner .section-tag {
      background: oklch(75% 0.12 320 / 0.2);
      color: var(--pink-mid);
    }

    .cta-title {
      font-size: clamp(1.8rem, 4vw, 3rem);
      font-weight: 800;
      color: #fff;
      line-height: 1.15;
      max-width: 640px;
      margin: 0 auto 16px;
      text-wrap: pretty;
    }
    .cta-sub {
      font-size: 1rem;
      color: oklch(80% 0.04 255);
      margin-bottom: 40px;
      max-width: 460px;
      margin-left: auto;
      margin-right: auto;
    }

    .cta-actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

    /* ── FOOTER ────────────────────────────────── */
    footer {
      background: oklch(15% 0.10 255);
      color: oklch(75% 0.04 255);
      padding: 60px 0 32px;
    }

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

    .footer-brand .nav-logo span:first-child { color: #fff; font-size: 1.05rem; }
    .footer-brand .nav-logo span:last-child { color: oklch(65% 0.05 255); }

    .footer-bio {
      font-size: 0.85rem;
      color: oklch(65% 0.04 255);
      line-height: 1.65;
      margin-top: 14px;
      max-width: 280px;
    }

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

    .social-btn {
      width: 36px;
      height: 36px;
      border-radius: 10px;
      background: oklch(22% 0.10 255);
      display: flex;
      align-items: center;
      justify-content: center;
      text-decoration: none;
      font-size: 0.9rem;
      color: oklch(70% 0.05 255);
      transition: background 0.15s, color 0.15s;
    }
    .social-btn:hover { background: var(--pink); color: #fff; }

    .footer-col h4 {
      font-size: 0.82rem;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: oklch(55% 0.05 255);
      margin-bottom: 16px;
    }

    .footer-links {
      display: flex;
      flex-direction: column;
      gap: 10px;
      list-style: none;
    }
    .footer-links a {
      text-decoration: none;
      color: oklch(65% 0.04 255);
      font-size: 0.88rem;
      transition: color 0.15s;
    }
    .footer-links a:hover { color: var(--pink-mid); }

    .footer-contact-item {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      margin-bottom: 10px;
    }
    .footer-contact-item .icon { font-size: 1rem; opacity: 0.6; margin-top: 1px; }
    .footer-contact-item span { font-size: 0.85rem; color: oklch(65% 0.04 255); line-height: 1.5; }
    .footer-contact-item a { color: var(--pink-mid); text-decoration: none; }
    .footer-contact-item a:hover { text-decoration: underline; }

    .footer-bottom {
      border-top: 1px solid oklch(22% 0.10 255);
      padding-top: 28px;
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      align-items: center;
      justify-content: space-between;
    }
    .footer-bottom p { font-size: 0.78rem; color: oklch(50% 0.04 255); }

    /* ── RESPONSIVE ────────────────────────────── */
    @media (min-width: 600px) {
      .services-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (min-width: 768px) {
      .hero-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0;
      }
      .hero-content { padding-bottom: 96px; }
      .hero-image-wrap { justify-content: flex-end; }

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

    @media (min-width: 960px) {
      .services-grid {
        grid-template-columns: repeat(3, 1fr);
      }
      .about-grid {
        grid-template-columns: 1fr 1fr;
      }
    }

    @media (max-width: 767px) {
      .nav-links, .nav-cta-desktop { display: none; }
      .hamburger { display: flex; }
    }

    @media (min-width: 768px) {
      .hamburger { display: none; }
      .mobile-nav { display: none !important; }
    }

    /* ── REPRODUCCIÓN ASISTIDA — TARJETA EXPANDIDA ── */
    .card-featured {
      grid-column: 1 / -1;
    }

    .ra-intro {
      font-size: 0.95rem;
      color: var(--text-muted);
      line-height: 1.7;
      margin-bottom: 24px;
      max-width: 780px;
      text-wrap: pretty;
    }

    .ra-categories {
      display: grid;
      grid-template-columns: 1fr;
      gap: 14px;
      margin-bottom: 24px;
    }

    @media (min-width: 768px) {
      .ra-categories { grid-template-columns: repeat(3, 1fr); }
    }

    .ra-category {
      background: var(--off-white);
      border-radius: var(--radius);
      padding: 16px 18px;
      border: 1px solid var(--border);
    }

    .ra-category-title {
      font-size: 0.88rem;
      font-weight: 700;
      color: var(--navy);
      margin-bottom: 10px;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .ra-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .ra-list li {
      font-size: 0.82rem;
      color: var(--text-muted);
      line-height: 1.5;
      padding-left: 14px;
      position: relative;
    }

    .ra-list li::before {
      content: "→";
      position: absolute;
      left: 0;
      color: var(--pink);
      font-size: 0.7rem;
      top: 2px;
    }

    .ra-list li strong { color: var(--navy); font-weight: 600; }

    .ra-closing {
      font-size: 0.95rem;
      font-style: italic;
      color: var(--navy);
      font-weight: 500;
      margin-bottom: 20px;
      border-left: 3px solid var(--pink);
      padding-left: 14px;
    }

    .ra-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-bottom: 24px;
    }

    .ra-videos {
      border-top: 1px solid var(--border);
      padding-top: 20px;
    }

    .ra-videos-label {
      font-size: 0.82rem;
      color: var(--text-muted);
      margin-bottom: 12px;
    }

    .video-cards {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
    }

    .video-card {
      display: flex;
      align-items: center;
      gap: 10px;
      background: var(--lavender);
      border-radius: var(--radius);
      padding: 10px 16px;
      text-decoration: none;
      color: var(--navy);
      font-size: 0.82rem;
      font-weight: 500;
      flex: 1;
      min-width: 180px;
      transition: background 0.15s;
      border: 1px solid var(--border);
    }

    .video-card:hover { background: var(--pink-light); }

    .play-icon {
      width: 30px;
      height: 30px;
      border-radius: 50%;
      background: var(--pink);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    /* ── CONTROL GINECOLÓGICO — LISTA ── */
    .cg-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 6px;
      margin-top: 10px;
    }

    .cg-list li {
      font-size: 0.82rem;
      color: var(--text-muted);
      line-height: 1.5;
      padding-left: 14px;
      position: relative;
    }

    .cg-list li::before {
      content: "·";
      position: absolute;
      left: 0;
      color: var(--pink);
      font-weight: 700;
    }

    .cg-list li strong { color: var(--navy); font-weight: 600; }

    /* ── CONSULTORIOS — TELÉFONOS Y BOTONES ── */
    .location-phones {
      display: flex;
      flex-direction: column;
      gap: 4px;
      margin: 12px 0 16px;
    }

    .phone-item {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 0.83rem;
      color: var(--text-muted);
    }

    .phone-label {
      font-size: 0.68rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      color: var(--text-muted);
      opacity: 0.7;
      min-width: 62px;
    }

    .phone-number {
      color: var(--navy);
      text-decoration: none;
      font-weight: 500;
    }

    .phone-number:hover { color: var(--pink); }

    .location-actions {
      display: flex;
      flex-direction: column;
      gap: 8px;
      margin-top: 16px;
    }

    .btn-loc {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      font-family: 'Poppins', sans-serif;
      font-size: 0.82rem;
      font-weight: 600;
      padding: 9px 16px;
      border-radius: 100px;
      border: none;
      cursor: pointer;
      text-decoration: none;
      transition: opacity 0.15s, transform 0.15s;
      white-space: nowrap;
    }

    .btn-loc:hover { opacity: 0.85; transform: translateY(-1px); }

    .btn-loc-wa { background: #25D366; color: #fff; }
    .btn-loc-online { background: var(--blue-soft); color: var(--navy); border: 1px solid var(--border); }
    .btn-loc-doc { background: var(--pink-light); color: var(--pink); }
