/* ==========================================================================
   INACAP · Programas Cumbre Tecnológica 2026
   Estilos — Tech / Dark UI
   ========================================================================== */

/* ---------- Tokens ---------- */
:root {
    --bg: #05060a;
    --bg-elev: #0a0d15;
    --panel: rgba(255, 255, 255, 0.035);
    --panel-solid: #0c1018;
    --stroke: rgba(255, 255, 255, 0.09);
    --stroke-strong: rgba(255, 255, 255, 0.18);

    --text: #e9eef8;
    --text-dim: #a3b0c6;
    --text-ink: #05060a;

    --accent: #22d3ee;
    --accent-2: #6366f1;

    --radius: 16px;
    --radius-sm: 10px;
    --pill: 999px;

    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.45);
    --shadow-md: 0 18px 40px -18px rgba(0, 0, 0, 0.85);
    --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ---------- Base ---------- */
html {
    scroll-behavior: smooth;
}

body {
    font-family: "Roboto", sans-serif;
    color: var(--text);
    margin: 0;
    padding: 0;
    background-color: var(--bg) !important;
    -webkit-font-smoothing: antialiased;
    position: relative;
}

/* Malla técnica + halos de luz de fondo */
body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px);
    background-size: 64px 64px;
    -webkit-mask-image: radial-gradient(ellipse 90% 60% at 50% 0%, #000 20%, transparent 85%);
    mask-image: radial-gradient(ellipse 90% 60% at 50% 0%, #000 20%, transparent 85%);
}

body::after {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background:
        radial-gradient(760px 420px at 12% -6%, rgba(34, 211, 238, 0.14), transparent 70%),
        radial-gradient(700px 420px at 88% 4%, rgba(99, 102, 241, 0.16), transparent 72%),
        radial-gradient(900px 600px at 50% 108%, rgba(34, 211, 238, 0.07), transparent 70%);
}

body > * {
    position: relative;
    z-index: 1;
}

::selection {
    background: rgba(34, 211, 238, 0.28);
    color: #fff;
}

/* Scrollbar */
* {
    scrollbar-color: rgba(34, 211, 238, 0.45) transparent;
}

*::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

*::-webkit-scrollbar-track {
    background: #070a11;
}

*::-webkit-scrollbar-thumb {
    background: linear-gradient(var(--accent), var(--accent-2));
    border-radius: var(--pill);
    border: 2px solid #070a11;
}

/* ---------- Banner (hero) ---------- */
.bg-header-carreras-foco {
    background-image:
        linear-gradient(180deg, rgba(5, 6, 10, 0.15) 0%, rgba(5, 6, 10, 0.82) 100%),
        url("../img/banner-landing-RM-carreras.jpg");
    background-size: cover, cover;
    background-position: top center, top center;
    background-repeat: no-repeat, no-repeat;
    height: 260px;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--stroke);
    box-shadow: var(--shadow-md), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

/* Barrido de escaneo sobre el banner */
.bg-header-carreras-foco::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(115deg, transparent 42%, rgba(34, 211, 238, 0.22) 50%, transparent 58%);
    transform: translateX(-120%);
    animation: scan-sweep 6s var(--ease) infinite;
}

@keyframes scan-sweep {
    0%   { transform: translateX(-120%); }
    55%  { transform: translateX(120%); }
    100% { transform: translateX(120%); }
}

@media (min-width: 768px) {
    .bg-header-carreras-foco { height: 270px; }
}

@media (min-width: 992px) {
    .bg-header-carreras-foco { height: 300px; }
}

@media (min-width: 1200px) {
    .bg-header-carreras-foco { height: 330px; }
}

.bg-header-carreras-foco h1 {
    color: #fff;
    font-weight: 700;
    font-family: "Space Grotesk", sans-serif;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 24px rgba(0, 0, 0, 0.6);
}

.bg-header-carreras-foco p {
    color: rgba(255, 255, 255, 0.86);
    font-weight: 400;
    font-size: 1.25rem;
}

.bg-header-carreras-foco > * {
    position: relative;
    z-index: 2;
}

/* ---------- CTA principal ---------- */
.btn-solicitar-informacion {
    position: relative;
    display: inline-block;
    background: linear-gradient(135deg, var(--accent) 0%, #4cc9f0 45%, var(--accent-2) 100%);
    padding: 0.7rem 1.6rem;
    color: var(--text-ink);
    font-weight: 700;
    font-family: "Space Grotesk", sans-serif;
    letter-spacing: 0.02em;
    transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), filter 0.35s var(--ease);
    border-radius: var(--pill);
    font-size: 18px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.28);
    animation: pulse-glow 2.6s ease-in-out infinite;
    white-space: nowrap;
}

.btn-solicitar-informacion::after {
    content: "";
    position: absolute;
    top: 0;
    left: -60%;
    width: 45%;
    height: 100%;
    background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.75), transparent);
    transform: skewX(-20deg);
    transition: left 0.6s var(--ease);
}

@media (min-width: 768px) {
    .btn-solicitar-informacion {
        padding: 0.8rem 2rem;
        font-size: 20px;
    }
}

.btn-solicitar-informacion:hover {
    text-decoration: none;
    color: var(--text-ink);
    filter: saturate(1.15) brightness(1.06);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px -8px rgba(34, 211, 238, 0.75);
}

.btn-solicitar-informacion:hover::after {
    left: 130%;
}

.btn-solicitar-informacion:active {
    transform: translateY(0) scale(0.985);
}

.btn-solicitar-informacion:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 3px;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 6px 28px -6px rgba(34, 211, 238, 0.55),
                    0 0 0 0 rgba(34, 211, 238, 0.5);
    }
    50% {
        box-shadow: 0 6px 34px -4px rgba(34, 211, 238, 0.8),
                    0 0 0 14px rgba(34, 211, 238, 0);
    }
}

/* ---------- Botón / link dentro de tarjeta ---------- */
.btn-solicitar-informacion-card {
    position: relative;
    display: inline-block;
    background-color: transparent;
    background-image: linear-gradient(135deg, rgba(34, 211, 238, 0.14), rgba(99, 102, 241, 0.14));
    border: 1px solid var(--accent-soft, rgba(34, 211, 238, 0.45));
    padding: 0.5rem 1.05rem;
    border-radius: var(--pill);
    font-size: 0.9375rem;
    font-weight: 600;
    line-height: 1.35;
    letter-spacing: 0.01em;
    color: var(--text) !important;
    text-decoration: none;
    transition: background-color 0.3s var(--ease), border-color 0.3s var(--ease),
                box-shadow 0.3s var(--ease), transform 0.3s var(--ease), color 0.3s var(--ease);
}

.btn-solicitar-informacion-card::before {
    content: "";
    display: inline-block;
    width: 6px;
    height: 6px;
    margin-right: 0.55rem;
    border-radius: 50%;
    background: var(--accent-card, var(--accent));
    box-shadow: 0 0 8px var(--accent-card, var(--accent));
    vertical-align: 1px;
}

.btn-solicitar-informacion-card:hover,
.btn-solicitar-informacion-card:focus {
    text-decoration: none;
    color: var(--text-ink) !important;
    background-image: linear-gradient(135deg, var(--accent-card, var(--accent)), rgba(255, 255, 255, 0.85));
    border-color: transparent;
    transform: translateY(-1px);
    box-shadow: 0 10px 26px -10px var(--accent-card, var(--accent));
}

.btn-solicitar-informacion-card:hover::before {
    background: var(--text-ink);
    box-shadow: none;
}

.link-aqui {
    color: var(--text);
    font-weight: 500;
    transition: color 0.3s var(--ease);
    border-radius: var(--pill);
}

.link-aqui:hover {
    color: var(--text);
    text-decoration: none;
}

.link-solicitar-info:hover {
    text-decoration: underline;
    text-underline-offset: 0.23em;
}

.border-radius-15 {
    border-radius: var(--radius);
}

/* ---------- Tarjetas ---------- */
.card {
    background-color: transparent;
    border: 0;
}

.card.bg-card-administracion,
.card.bg-card-salud,
.card.bg-card-construccion,
.card.bg-card-logistica,
.card.bg-card-mecanica,
.card.bg-card-diseno,
.card.bg-card-informatica {
    position: relative;
    isolation: isolate;
    border-radius: var(--radius);
    border: 1px solid var(--stroke);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.055) 0%, rgba(255, 255, 255, 0.015) 42%, rgba(255, 255, 255, 0) 100%),
        var(--panel-solid);
    box-shadow: var(--shadow-sm), inset 0 1px 0 rgba(255, 255, 255, 0.06);
    overflow: hidden;
    transition: transform 0.4s var(--ease), border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

/* Filo luminoso superior con el color de la línea formativa */
.card[class*="bg-card-"]::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    z-index: 3;
    background: linear-gradient(90deg, transparent, var(--accent-card, var(--accent)), transparent);
    opacity: 0.85;
    transition: opacity 0.4s var(--ease);
}

/* Halo de color al pasar el cursor */
.card[class*="bg-card-"]::after {
    content: "";
    position: absolute;
    inset: -1px;
    z-index: 0;
    border-radius: inherit;
    background: radial-gradient(420px 220px at 50% 0%, var(--accent-card, var(--accent)), transparent 70%);
    opacity: 0;
    transition: opacity 0.45s var(--ease);
    pointer-events: none;
    mix-blend-mode: screen;
}

.card[class*="bg-card-"]:hover {
    transform: translateY(-6px);
    border-color: var(--accent-soft, rgba(34, 211, 238, 0.5));
    box-shadow: var(--shadow-md), 0 0 0 1px var(--accent-soft, rgba(34, 211, 238, 0.35));
}

.card[class*="bg-card-"]:hover::after {
    opacity: 0.14;
}

.card[class*="bg-card-"] > * {
    position: relative;
    z-index: 2;
}

.card-body {
    background: transparent;
}

/* Acentos por línea formativa */
.bg-card-administracion { --accent-card: #818cf8; --accent-soft: rgba(129, 140, 248, 0.5); }
.bg-card-salud         { --accent-card: #38bdf8; --accent-soft: rgba(56, 189, 248, 0.5); }
.bg-card-construccion  { --accent-card: #34d399; --accent-soft: rgba(52, 211, 153, 0.5); }
.bg-card-logistica     { --accent-card: #fb7185; --accent-soft: rgba(251, 113, 133, 0.5); }
.bg-card-mecanica      { --accent-card: #fbbf24; --accent-soft: rgba(251, 191, 36, 0.5); }
.bg-card-diseno        { --accent-card: #c084fc; --accent-soft: rgba(192, 132, 252, 0.5); }
.bg-card-informatica   { --accent-card: #22d3ee; --accent-soft: rgba(34, 211, 238, 0.5); }

/* Todos los h4 (titulos de tarjeta) en formato oracion.
   El texto del HTML viene en MAYUSCULA: lo pasamos a minuscula y
   recuperamos la mayuscula inicial con ::first-letter. */


.card-title {
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.0625rem;
    font-weight: 600;
    line-height: 1.35;
    letter-spacing: 0.005em;
    color: var(--text);
}

@media (min-width: 992px) {
    .card-title { font-size: 1.125rem; }
}

.card-text {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-dim);
}

/* Imagen de tarjeta: tratamiento técnico que se aclara al hover */
.img-card {
    border-radius: 0;
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    height: auto;
    object-fit: cover;
    object-position: center;
    filter: saturate(0.72) contrast(1.06) brightness(0.82);
    transition: filter 0.5s var(--ease), transform 0.6s var(--ease);
}

/* Fallback para navegadores sin aspect-ratio */
@supports not (aspect-ratio: 16 / 9) {
    .img-card {
        height: 210px;
    }
}

.card[class*="bg-card-"]:hover .img-card {
    filter: saturate(1.05) contrast(1.02) brightness(1);
    transform: scale(1.035);
}

/* Botón secundario "Ver más" */
.link-card {
    color: var(--text);
    background-color: rgba(255, 255, 255, 0.06);
    padding: 0.5rem 1.05rem;
    border-radius: var(--pill);
    font-size: 0.9375rem;
    transition: all 0.3s var(--ease);
    font-weight: 600;
    text-decoration: none;
    border: 1px solid var(--stroke-strong);
}

.link-card:hover {
    text-decoration: none;
    color: var(--text-ink);
    background-color: var(--accent-card, var(--accent));
    border-color: transparent;
    box-shadow: 0 10px 26px -10px var(--accent-card, var(--accent));
}

/* ---------- Bloques de sección (Diplomados / Cursos) ---------- */
.diplomados {
    position: relative;
    border-radius: var(--radius);
    border: 1px solid var(--stroke);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0)) ,
        var(--bg-elev);
    box-shadow: var(--shadow-md), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    overflow: hidden;
}

.diplomados::before {
    content: "";
    position: absolute;
    top: 0;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    opacity: 0.7;
}

.diplomados.bg-diplomados {
    --accent: #c084fc;
    background:
        linear-gradient(180deg, rgba(192, 132, 252, 0.10), rgba(192, 132, 252, 0.015) 45%, rgba(255, 255, 255, 0) 100%),
        var(--bg-elev);
}

.diplomados.bg-card-salud {
    --accent: #22d3ee;
    background:
        linear-gradient(180deg, rgba(34, 211, 238, 0.10), rgba(34, 211, 238, 0.015) 45%, rgba(255, 255, 255, 0) 100%),
        var(--bg-elev);
    border-radius: var(--radius);
    border: 1px solid var(--stroke);
}

@media (min-width: 768px) {
    .diplomados {
        padding-left: 1.25rem !important;
        padding-right: 1.25rem !important;
    }
}

/* Compatibilidad con las clases originales de fondo */
.bg-diplomados {
    border-radius: var(--radius);
    border: 1px solid var(--stroke);
}

.bg-diplomados .titulo-h2 {
    color: var(--text);
}

/* Titulos de seccion (Diplomados / Cursos) en MAYUSCULA */
.diplomados .titulo-h2 {
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-size: 24px;
}

@media (min-width: 768px) {
    .diplomados .titulo-h2 { font-size: 27px; }
}

@media (min-width: 992px) {
    .diplomados .titulo-h2 { font-size: 30px; }
}

/* ---------- Títulos ---------- */
.titulo-h2 {
    font-family: "Space Grotesk", sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 28px;
    line-height: 1.18;
    letter-spacing: -0.025em;
    margin-bottom: 2rem;
    max-width: 730px;
    color: var(--text);
    background: linear-gradient(180deg, #ffffff 0%, #b9c6dd 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: none;
}

/* Marca de acento sobre el título */
.titulo-h2::before {
    content: "";
    display: block;
    width: 56px;
    height: 3px;
    margin-bottom: 0.85rem;
    border-radius: var(--pill);
    background: linear-gradient(90deg, var(--accent), var(--accent-2));
    box-shadow: 0 0 16px rgba(34, 211, 238, 0.55);
    -webkit-text-fill-color: initial;
}

@media (min-width: 768px) {
    .titulo-h2 { font-size: 32px; }
}

@media (min-width: 992px) {
    .titulo-h2 { font-size: 36px; }
}

.titulo-footer {
    font-family: "Space Grotesk", sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 26px;
    letter-spacing: -0.015em;
    color: #fff;
}

/* ---------- Header / Footer ---------- */
.bg-footer-carreras {
    background-color: rgba(7, 9, 15, 0.82);
    -webkit-backdrop-filter: blur(14px) saturate(140%);
    backdrop-filter: blur(14px) saturate(140%);
    position: relative;
}

header.bg-footer-carreras {
    position: sticky;
    top: 0;
    z-index: 1030;
    border-bottom: 1px solid var(--stroke);
    box-shadow: 0 10px 30px -18px rgba(0, 0, 0, 0.9);
}

header.bg-footer-carreras::after,
footer.bg-footer-carreras::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(34, 211, 238, 0.75), rgba(99, 102, 241, 0.75), transparent);
}

header.bg-footer-carreras::after { bottom: -1px; }

footer.bg-footer-carreras {
    border-top: 1px solid var(--stroke);
    margin-top: 1rem;
}

footer.bg-footer-carreras::before { top: -1px; }

.logo-kv-inacap {
    height: 34px;
    transition: filter 0.3s var(--ease), transform 0.3s var(--ease);
}

.logo-kv-inacap:hover {
    filter: drop-shadow(0 0 12px rgba(34, 211, 238, 0.7));
    transform: translateY(-1px);
}

.logo-acreditacion {
    max-height: 80px;
    width: auto;
    opacity: 0.85;
    transition: opacity 0.3s var(--ease);
}

.logo-acreditacion:hover {
    opacity: 1;
}

/* ---------- Cápsula informativa (CTA final) ---------- */
.bg-card-salud:not(.card):not(.diplomados) {
    position: relative;
    border-radius: var(--radius);
    border: 1px solid rgba(34, 211, 238, 0.3);
    background:
        radial-gradient(700px 260px at 8% 0%, rgba(34, 211, 238, 0.16), transparent 70%),
        radial-gradient(700px 300px at 95% 110%, rgba(99, 102, 241, 0.2), transparent 72%),
        var(--bg-elev);
    box-shadow: var(--shadow-md), inset 0 1px 0 rgba(255, 255, 255, 0.07);
    overflow: hidden;
}

.bg-card-salud:not(.card):not(.diplomados)::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
    background-size: 38px 38px;
    -webkit-mask-image: linear-gradient(115deg, #000 0%, transparent 62%);
    mask-image: linear-gradient(115deg, #000 0%, transparent 62%);
}

.bg-card-salud:not(.card):not(.diplomados) > * {
    position: relative;
    z-index: 1;
}

/* ---------- Sedes ---------- */
.bg-gris-section {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0)),
        #080b12;
    border-top: 1px solid var(--stroke);
    border-bottom: 1px solid var(--stroke);
}

.bg-card-sedes {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.012)),
        var(--panel-solid);
    border: 1px solid var(--stroke) !important;
    border-radius: var(--radius);
    overflow: hidden;
    transition: transform 0.4s var(--ease), border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.bg-card-sedes:hover {
    transform: translateY(-4px);
    border-color: rgba(34, 211, 238, 0.45) !important;
    box-shadow: var(--shadow-md);
}

.card-title-sedes {
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--text);
}

.card-text-sedes {
    font-size: 14px;
    font-weight: 400;
    color: var(--text-dim);
    line-height: 1.55;
}

.icono-sol {
    width: 30px;
    filter: drop-shadow(0 0 8px rgba(251, 191, 36, 0.6));
}

.icono-luna {
    width: 25px;
    filter: drop-shadow(0 0 8px rgba(129, 140, 248, 0.6));
}

/* ---------- Modales ---------- */
.modal-content {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0)), var(--bg-elev);
    border: 1px solid var(--stroke);
    border-radius: var(--radius);
    color: var(--text);
    box-shadow: var(--shadow-md);
}

.modal-header,
.modal-footer {
    border-color: var(--stroke);
}

.modal-backdrop.show {
    opacity: 0.75;
}

.btn-cerrar-modal {
    color: var(--text);
    background-color: rgba(255, 255, 255, 0.07);
    padding: 0.4375rem 1rem;
    border-radius: var(--pill);
    font-size: 1rem;
    transition: all 0.3s var(--ease);
    font-weight: 600;
    text-decoration: none;
    border: 1px solid var(--stroke-strong);
}

.btn-cerrar-modal:hover {
    text-decoration: none;
    color: var(--text);
    background-color: rgba(255, 255, 255, 0.14);
    border-color: var(--stroke-strong);
}

/* ---------- Botones por línea formativa ---------- */
.btn-solicitar-informacion-administracion,
.btn-solicitar-informacion-salud,
.btn-solicitar-informacion-construccion,
.btn-solicitar-informacion-logistica,
.btn-solicitar-informacion-mantenimiento,
.btn-solicitar-informacion-diseno,
.btn-solicitar-informacion-informatica {
    padding: 0.5rem 1.05rem;
    border-radius: var(--pill);
    font-weight: 600;
    color: var(--text-ink) !important;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: filter 0.3s var(--ease), transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.btn-solicitar-informacion-administracion:hover,
.btn-solicitar-informacion-salud:hover,
.btn-solicitar-informacion-construccion:hover,
.btn-solicitar-informacion-logistica:hover,
.btn-solicitar-informacion-mantenimiento:hover,
.btn-solicitar-informacion-diseno:hover,
.btn-solicitar-informacion-informatica:hover {
    text-decoration: none;
    transform: translateY(-1px);
    filter: brightness(1.08) saturate(1.1);
}

.btn-solicitar-informacion-administracion { background: linear-gradient(135deg, #818cf8, #a5b4fc); }
.btn-solicitar-informacion-salud          { background: linear-gradient(135deg, #38bdf8, #7dd3fc); }
.btn-solicitar-informacion-construccion   { background: linear-gradient(135deg, #34d399, #6ee7b7); }
.btn-solicitar-informacion-logistica      { background: linear-gradient(135deg, #fb7185, #fda4af); }
.btn-solicitar-informacion-mantenimiento  { background: linear-gradient(135deg, #fbbf24, #fcd34d); }
.btn-solicitar-informacion-diseno         { background: linear-gradient(135deg, #c084fc, #d8b4fe); }
.btn-solicitar-informacion-informatica    { background: linear-gradient(135deg, #22d3ee, #67e8f9); }

/* ---------- Textos de color por línea formativa ---------- */
.color-administracion { color: #a5b4fc; }
.color-salud          { color: #7dd3fc; }
.color-construccion   { color: #6ee7b7; }
.color-logistica      { color: #fda4af; }
.color-mantenimiento  { color: #fcd34d; }
.color-diseno         { color: #d8b4fe; }
.color-informatica    { color: #67e8f9; }

.estilo-li-administracion,
.estilo-li-salud,
.estilo-li-construccion,
.estilo-li-logistica,
.estilo-li-diseno,
.estilo-li-mantenimiento,
.estilo-li-informatica {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.01em;
}

.estilo-li-administracion { color: #a5b4fc; }
.estilo-li-salud          { color: #7dd3fc; }
.estilo-li-construccion   { color: #6ee7b7; }
.estilo-li-logistica      { color: #fda4af; }
.estilo-li-diseno         { color: #d8b4fe; }
.estilo-li-mantenimiento  { color: #fcd34d; }
.estilo-li-informatica    { color: #67e8f9; }

.span-li {
    color: var(--text-dim);
    font-size: 1rem;
    font-weight: 400;
}

/* ---------- Accesibilidad ---------- */
a:focus-visible,
button:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 3px;
    border-radius: var(--radius-sm);
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }

    *,
    *::before,
    *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
    }
}
