    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    :root {
      --hospital: #053272;
      --hospital-dark: #032050;
      --hospital-light: #eef3fb;
      --hospital-cyan: #00AFEF;
      --hospital-green: #A8CF45;
      --govco: #3366CC;
      --gray-50: #f9fafb; --gray-100: #f3f4f6; --gray-200: #e5e7eb;
      --gray-300: #d1d5db; --gray-400: #9ca3af; --gray-500: #6b7280;
      --gray-600: #4b5563; --gray-700: #374151; --gray-800: #1f2937;
      --radius: 0.5rem;
    }
    body { font-family: 'Inter', sans-serif; color: var(--gray-800); background: #fff; line-height: 1.6; font-size: 16px; }
    a { text-decoration: none; color: inherit; }
    img { max-width: 100%; height: auto; display: block; }
    h1,h2,h3,h4,h5,h6 { font-weight: 700; line-height: 1.2; letter-spacing: -0.02em; }
    .container { max-width: 1320px; margin: 0 auto; padding: 0 1.5rem; }
    .min-h-screen { min-height: 100vh; }
    .flex { display: flex; } .flex-col { flex-direction: column; } .flex-grow { flex-grow: 1; }
    .items-center { align-items: center; } .items-start { align-items: flex-start; }
    .justify-between { justify-content: space-between; } .justify-center { justify-content: center; }
    .text-center { text-align: center; } .text-left { text-align: left; }
    .gap-2 { gap: .5rem; } .gap-3 { gap: .75rem; } .gap-4 { gap: 1rem; }
    .gap-6 { gap: 1.5rem; } .gap-8 { gap: 2rem; }
    .font-bold { font-weight: 700; } .font-semibold { font-weight: 600; } .font-medium { font-weight: 500; }
    .text-sm { font-size: .875rem; } .text-xs { font-size: .75rem; } .text-lg { font-size: 1.125rem; }
    .text-xl { font-size: 1.25rem; } .text-2xl { font-size: 1.5rem; } .text-3xl { font-size: 1.875rem; }
    .text-4xl { font-size: 2.25rem; } .text-5xl { font-size: 3rem; }
    .text-hospital { color: var(--hospital); } .text-cyan { color: var(--hospital-cyan); }
    .text-white { color: #fff; } .text-gray-500 { color: var(--gray-500); }
    .text-gray-600 { color: var(--gray-600); } .text-gray-700 { color: var(--gray-700); }
    .bg-white { background: #fff; } .bg-gray-50 { background: var(--gray-50); }
    .bg-hospital { background: var(--hospital); }
    .mt-1{margin-top:.25rem} .mt-2{margin-top:.5rem} .mt-3{margin-top:.75rem} .mt-4{margin-top:1rem}
    .mt-6{margin-top:1.5rem} .mt-8{margin-top:2rem} .mt-10{margin-top:2.5rem} .mt-12{margin-top:3rem}
    .mb-1{margin-bottom:.25rem} .mb-2{margin-bottom:.5rem} .mb-3{margin-bottom:.75rem} .mb-4{margin-bottom:1rem}
    .mb-6{margin-bottom:1.5rem} .mb-8{margin-bottom:2rem} .mb-12{margin-bottom:3rem}
    .p-4{padding:1rem} .p-6{padding:1.5rem} .p-8{padding:2rem}
    .px-4{padding-left:1rem;padding-right:1rem} .px-6{padding-left:1.5rem;padding-right:1.5rem}
    .px-8{padding-left:2rem;padding-right:2rem}
    .py-1{padding-top:.25rem;padding-bottom:.25rem} .py-2{padding-top:.5rem;padding-bottom:.5rem}
    .py-3{padding-top:.75rem;padding-bottom:.75rem} .py-4{padding-top:1rem;padding-bottom:1rem}
    .py-6{padding-top:1.5rem;padding-bottom:1.5rem} .py-8{padding-top:2rem;padding-bottom:2rem}
    .py-10{padding-top:2.5rem;padding-bottom:2.5rem} .py-12{padding-top:3rem;padding-bottom:3rem}
    .py-16{padding-top:4rem;padding-bottom:4rem}
    .rounded { border-radius: var(--radius); } .rounded-lg { border-radius: var(--radius); }
    .rounded-full { border-radius: 9999px; } .rounded-xl { border-radius: .75rem; }
    .shadow { box-shadow: 0 1px 3px rgba(0,0,0,.08); }
    .shadow-md { box-shadow: 0 4px 8px rgba(0,0,0,.07),0 1px 2px rgba(0,0,0,.04); }
    .shadow-lg { box-shadow: 0 10px 24px rgba(0,0,0,.1),0 2px 6px rgba(0,0,0,.05); }
    .border { border: 1px solid var(--gray-200); }
    .border-t { border-top: 1px solid var(--gray-200); }
    .border-b { border-bottom: 1px solid var(--gray-200); }
    .overflow-hidden { overflow: hidden; } .relative { position: relative; }
    .absolute { position: absolute; } .sticky { position: sticky; }
    .top-0 { top: 0; } .z-50 { z-index: 50; }
    .w-full { width: 100%; } .h-full { height: 100%; }
    .max-w-xl { max-width: 36rem; margin-left: auto; margin-right: auto; }
    .max-w-2xl { max-width: 42rem; margin-left: auto; margin-right: auto; }
    .max-w-3xl { max-width: 48rem; margin-left: auto; margin-right: auto; }
    .max-w-4xl { max-width: 56rem; margin-left: auto; margin-right: auto; }
    .space-y-2 > * + * { margin-top: .5rem; }
    .space-y-3 > * + * { margin-top: .75rem; }
    .space-y-4 > * + * { margin-top: 1rem; }
    .underline { text-decoration: underline; }
    .opacity-90 { opacity: .9; }
    .list-disc { list-style: disc; padding-left: 1.25rem; }
    .list-none { list-style: none; padding-left: 0; }

    /* GOV.CO bars */
    .govco-bar { background: var(--govco); color: #fff; padding: .5rem 0; font-size: .8125rem; }
    .govco-bar a { color: #fff; opacity: .9; transition: opacity .15s; }
    .govco-bar a:hover { opacity: 1; text-decoration: underline; }
    .inst-bar { background: var(--hospital); color: #fff; padding: .3125rem 0; font-size: .75rem; }
    .inst-bar a { color: #fff; opacity: .85; transition: opacity .15s; }
    .inst-bar a:hover { opacity: 1; text-decoration: underline; }

    /* Navbar */
    .main-nav { background: #fff; padding: .75rem 0; border-bottom: 1px solid var(--gray-200); }
    .nav-link { color: var(--gray-700); font-size: .9375rem; font-weight: 500; padding: .25rem 0; transition: color .15s; cursor: pointer; }
    .nav-link:hover { color: var(--hospital); }
    .nav-link.active { color: var(--hospital); border-bottom: 2px solid var(--hospital); }
    .mobile-menu { background: #fff; border-top: 1px solid var(--gray-200); padding: .75rem 1.5rem; }
    .mobile-link { display: flex; align-items: center; gap: .5rem; padding: .625rem 0; color: var(--gray-700); font-weight: 500; cursor: pointer; border-bottom: 1px solid var(--gray-100); transition: color .15s; }
    .mobile-link:hover { color: var(--hospital); }
    .hamburger-btn { background: none; border: none; cursor: pointer; color: var(--gray-700); padding: .25rem; display: flex; align-items: center; }

    /* Buttons */
    .btn-primary { display: inline-block; background: var(--hospital); color: #fff; padding: .75rem 2rem; border-radius: var(--radius); font-weight: 600; font-size: .875rem; letter-spacing: .03em; cursor: pointer; border: none; font-family: inherit; transition: background .2s; }
    .btn-primary:hover { background: var(--hospital-dark); color: #fff; }
    .btn-white { display: inline-block; background: #fff; color: var(--hospital); padding: .75rem 2rem; border-radius: var(--radius); font-weight: 600; font-size: .875rem; cursor: pointer; border: none; font-family: inherit; transition: background .2s; }
    .btn-white:hover { background: var(--gray-100); }
    .btn-cyan { display: inline-block; background: var(--hospital-cyan); color: #fff; padding: .75rem 2rem; border-radius: var(--radius); font-weight: 600; font-size: .875rem; cursor: pointer; border: none; font-family: inherit; transition: background .2s; }
    .btn-sm { padding: .375rem 1rem; font-size: .8125rem; }
    .btn-outline { background: transparent; color: var(--hospital); border: 2px solid var(--hospital); padding: .625rem 1.5rem; border-radius: var(--radius); font-weight: 600; font-size: .875rem; cursor: pointer; font-family: inherit; transition: all .2s; }
    .btn-outline:hover { background: var(--hospital); color: #fff; }

    /* Hero */
    .hero-slide { position: absolute; inset: 0; background-size: cover; background-position: center; display: flex; align-items: center; transition: opacity .8s ease; }
    .hero-wrap { position: relative; height: 580px; overflow: hidden; }
    .hero-overlay { position: absolute; inset: 0; background: linear-gradient(120deg, rgba(7,38,89,.72) 0%, rgba(0,0,0,.38) 100%); }
    .hero-content { position: relative; z-index: 1; color: #fff; max-width: 580px; }
    .hero-content h1, .hero-content .hero-titulo { font-size: 3rem; font-weight: 700; margin-bottom: 1rem; text-shadow: 0 2px 8px rgba(0,0,0,.3); }
    .hero-content p { font-size: 1.1rem; opacity: .9; margin-bottom: 2rem; line-height: 1.7; }
    .hero-dots { position: absolute; bottom: 1.25rem; left: 50%; transform: translateX(-50%); display: flex; gap: .5rem; z-index: 2; }
    .hero-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,.4); cursor: pointer; border: none; transition: all .2s; }
    .hero-dot.active { background: #fff; transform: scale(1.3); }
    .hero-arrow { position: absolute; top: 50%; transform: translateY(-50%); z-index: 2; background: rgba(255,255,255,.15); backdrop-filter: blur(4px); border: 1px solid rgba(255,255,255,.25); color: #fff; width: 42px; height: 42px; border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: background .2s; }
    .hero-arrow:hover { background: rgba(255,255,255,.28); }
    /* En móvil las flechas quedaban encima del texto: se bajan al pie del
       carrusel, junto a los puntos, donde no estorban la lectura. */
    @media (max-width: 640px) {
      .hero-arrow { top: auto; bottom: 12px; transform: none; width: 34px; height: 34px; }
    }

    /* Cards */
    .card { background: #fff; border-radius: var(--radius); border: 1px solid var(--gray-200); transition: box-shadow .2s, border-color .2s, transform .2s; }
    .card:hover { box-shadow: 0 8px 24px rgba(0,0,0,.08); }
    .news-card img { width: 100%; height: 196px; object-fit: cover; }
    .news-card:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.1); }

    /* Service card */
    .service-icon-wrap { width: 3.25rem; height: 3.25rem; border-radius: .75rem; background: var(--hospital-light); display: flex; align-items: center; justify-content: center; color: var(--hospital); flex-shrink: 0; }
    .service-expand-body { overflow: hidden; transition: max-height .35s ease; }

    /* Prof card */
    .prof-photo { width: 5.5rem; height: 5.5rem; border-radius: 50%; object-fit: cover; margin: 0 auto .75rem; border: 3px solid var(--hospital-light); }

    /* Accordion */
    .accordion-item { border: 1px solid var(--gray-200); border-radius: var(--radius); background: #fff; overflow: hidden; margin-bottom: .625rem; }
    .accordion-btn { width: 100%; padding: 1rem 1.25rem; display: flex; align-items: center; justify-content: space-between; background: none; border: none; cursor: pointer; font-family: inherit; font-size: .9375rem; font-weight: 600; color: var(--gray-800); text-align: left; transition: background .15s; }
    .accordion-btn:hover { background: var(--gray-50); }
    .accordion-content { padding: 0 1.25rem 1.25rem; font-size: .875rem; color: var(--gray-600); line-height: 1.75; }
    .accordion-chevron { transition: transform .25s; flex-shrink: 0; }
    .accordion-chevron.open { transform: rotate(180deg); }

    /* Forms */
    .form-label { display: block; font-size: .875rem; font-weight: 500; color: var(--gray-700); margin-bottom: .375rem; }
    .form-input { width: 100%; padding: .625rem .875rem; border: 1px solid var(--gray-300); border-radius: var(--radius); font-size: .9375rem; font-family: inherit; color: var(--gray-800); background: #fff; transition: border-color .15s, box-shadow .15s; outline: none; }
    .form-input:focus { border-color: var(--hospital-cyan); box-shadow: 0 0 0 3px rgba(0,194,220,.12); }
    textarea.form-input { resize: vertical; min-height: 110px; }

    /* Search */
    .search-wrap { position: relative; }
    .search-input { width: 100%; padding: .625rem .875rem .625rem 2.375rem; border: 1px solid var(--gray-300); border-radius: 9999px; font-size: .875rem; font-family: inherit; outline: none; transition: border-color .15s; }
    .search-input:focus { border-color: var(--hospital); }
    .search-icon { position: absolute; left: .875rem; top: 50%; transform: translateY(-50%); color: var(--gray-400); pointer-events: none; }

    /* Filter chips */
    .chip { padding: .3125rem .875rem; border-radius: 9999px; font-size: .8125rem; font-weight: 500; cursor: pointer; border: 1px solid var(--gray-200); background: #fff; color: var(--gray-700); transition: all .15s; }
    .chip:hover { border-color: var(--hospital); color: var(--hospital); }
    .chip.active { background: var(--hospital); color: #fff; border-color: var(--hospital); }

    /* Icon circles */
    .ic { display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
    .ic-hospital { background: var(--hospital); color: #fff; border-radius: 50%; }
    .ic-light { background: var(--hospital-light); color: var(--hospital); border-radius: 50%; }
    .ic-sm { width: 2.5rem; height: 2.5rem; }
    .ic-md { width: 3rem; height: 3rem; }
    .ic-lg { width: 4rem; height: 4rem; }

    /* Page header */
    .page-hero { background: var(--gray-50); padding: 3rem 0; border-bottom: 1px solid var(--gray-200); }
    .page-hero h1 { font-size: 2.25rem; color: var(--gray-800); }
    .page-hero.dark { background: var(--hospital); color: #fff; }
    .page-hero.dark h1 { color: #fff; }
    .page-hero.dark p { color: rgba(255,255,255,.85); }

    /* Emergency banner */
    .emerg-banner { background: var(--hospital); color: #fff; padding: 3rem 0; }

    /* Footer */
    .footer-main { background: var(--gray-50); padding: 3rem 0; border-top: 1px solid var(--gray-200); }
    .footer-govco { background: var(--govco); color: #fff; padding: 1.5rem 0; }
    .footer-link { color: var(--gray-600); font-size: .875rem; transition: color .15s; display: block; margin-bottom: .375rem; }
    .footer-link:hover { color: var(--hospital); }
    .footer-ext { color: var(--gray-500); font-size: .75rem; transition: color .15s; }
    .footer-ext:hover { color: var(--hospital); }
    .footer-icon-link { color: var(--gray-600); transition: color .15s; }
    .footer-icon-link:hover { color: var(--hospital); }

    /* Animations */
    @keyframes fadeIn { from{opacity:0} to{opacity:1} }
    @keyframes slideUp { from{opacity:0;transform:translateY(20px)} to{opacity:1;transform:translateY(0)} }
    .anim-fade { animation: fadeIn .6s ease forwards; }
    .anim-up { animation: slideUp .6s ease forwards; }

    /* Alert */
    .alert-info { background: hsl(196,100%,95%); border-left: 4px solid var(--hospital-cyan); padding: .875rem 1.25rem; border-radius: 0 var(--radius) var(--radius) 0; font-size: .875rem; color: var(--gray-700); }

    /* MVV cards */
    .mvv-card { background: #fff; border-radius: var(--radius); padding: 2rem; border: 1px solid var(--gray-200); }

    /* Informe row */
    .informe-row { display: flex; align-items: center; justify-content: space-between; padding: .875rem 0; border-bottom: 1px solid var(--gray-100); gap: 1rem; }
    .informe-row:last-child { border-bottom: none; }

    /* Contact line cards */
    .contact-line-card { background: var(--gray-50); border-radius: var(--radius); padding: 2rem; text-align: center; transition: box-shadow .2s; border: 1px solid var(--gray-200); }
    .contact-line-card:hover { box-shadow: 0 6px 16px rgba(0,0,0,.08); }
    .contact-line-card.featured { background: var(--hospital); color: #fff; }

    /* Tweaks */
    .tweaks-panel { position: fixed; bottom: 1.5rem; right: 1.5rem; background: #fff; border-radius: .875rem; box-shadow: 0 8px 32px rgba(0,0,0,.14),0 2px 8px rgba(0,0,0,.08); padding: 1.25rem; z-index: 200; width: 230px; border: 1px solid var(--gray-200); }
    .tweak-label { font-size: .6875rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--gray-400); margin-bottom: .5rem; margin-top: .75rem; }
    .swatch { width: 22px; height: 22px; border-radius: 50%; cursor: pointer; border: 3px solid transparent; transition: all .15s; }
    .swatch.on { border-color: var(--gray-700); transform: scale(1.15); }
    .tweak-toggle { display: flex; align-items: center; gap: .5rem; font-size: .8125rem; color: var(--gray-700); cursor: pointer; padding: .25rem 0; }
    .toggle-track { width: 34px; height: 18px; background: var(--gray-200); border-radius: 9px; position: relative; transition: background .2s; flex-shrink: 0; }
    .toggle-track.on { background: var(--hospital); }
    .toggle-thumb { position: absolute; top: 2px; left: 2px; width: 14px; height: 14px; border-radius: 50%; background: #fff; transition: transform .2s; box-shadow: 0 1px 3px rgba(0,0,0,.2); }
    .toggle-thumb.on { transform: translateX(16px); }

    /* Skip link — WCAG 2.1 SC 2.4.1 Bypass Blocks */
    .skip-link {
      position: fixed; top: -100px; left: 1rem;
      background: var(--hospital); color: #fff;
      padding: .875rem 1.5rem; border-radius: 0 0 .5rem .5rem;
      font-size: .9375rem; font-weight: 600;
      z-index: 10000;
      transition: top .2s ease;
      box-shadow: 0 4px 12px rgba(0,0,0,.25);
      text-decoration: none;
      border: 2px solid #fff;
    }
    .skip-link:focus,
    .skip-link:focus-visible { top: 0; outline: 3px solid var(--hospital-cyan); outline-offset: 2px; }

    /* WP API badge + loading */
    .wp-badge { display: inline-flex; align-items: center; gap: .375rem; padding: .25rem .625rem; background: rgba(35,117,180,.08); color: #21759b; border: 1px solid rgba(35,117,180,.18); border-radius: 9999px; font-size: .6875rem; font-weight: 600; letter-spacing: .02em; }
    .wp-badge::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: #46b450; box-shadow: 0 0 0 2px rgba(70,180,80,.2); animation: pulse 2s ease-in-out infinite; }
    @keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.5} }
    .wp-banner { background: linear-gradient(90deg, rgba(33,117,155,.05), rgba(33,117,155,.02)); border: 1px solid rgba(33,117,155,.12); border-radius: var(--radius); padding: .875rem 1.125rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; margin-bottom: 1.5rem; }
    .wp-banner-text { font-size: .8125rem; color: var(--gray-700); }
    .wp-banner-text strong { color: #21759b; }
    .wp-banner code { background: rgba(35,117,180,.1); padding: .125rem .375rem; border-radius: 3px; font-family: 'SF Mono', Monaco, monospace; font-size: .75rem; color: #21759b; }
    .skeleton-card { background: #fff; border: 1px solid var(--gray-200); border-radius: var(--radius); overflow: hidden; }
    .skeleton-img { width: 100%; height: 196px; background: linear-gradient(90deg, var(--gray-100) 25%, var(--gray-200) 50%, var(--gray-100) 75%); background-size: 200% 100%; animation: shimmer 1.5s ease-in-out infinite; }
    .skeleton-line { height: 14px; background: linear-gradient(90deg, var(--gray-100) 25%, var(--gray-200) 50%, var(--gray-100) 75%); background-size: 200% 100%; animation: shimmer 1.5s ease-in-out infinite; border-radius: 4px; margin: .5rem 0; }
    .skeleton-line.short { width: 40%; }
    .skeleton-line.medium { width: 75%; }
    @keyframes shimmer { 0%{background-position:200% 0} 100%{background-position:-200% 0} }

    /* Responsive */
    .grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; }
    .grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 2rem; }
    .grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; }
    .grid-2-3 { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: start; }

    @media (max-width: 1024px) {
      .grid-4 { grid-template-columns: repeat(2,1fr); }
    }
    @media (max-width: 768px) {
      .grid-3,.grid-2,.grid-4,.grid-2-3 { grid-template-columns: 1fr; }
      .hero-content h1, .hero-content .hero-titulo { font-size: 1.875rem; }
      .hero-wrap { height: 440px; }
      .page-hero h1 { font-size: 1.75rem; }
      .desktop-only { display: none !important; }
      .mobile-block { display: block !important; }
    }
    .desktop-only { display: flex; }
    .mobile-block { display: none; }
    @media (min-width: 769px) { .mobile-block { display: none !important; } }
