/* =====================================================
   PALETA INSTITUCIONAL – ENFERMERÍA UDEA
===================================================== */
:root {
    --primary: #026937;
    --primary-light: #43b649;
    --bg: #f4f7f5;
    --card-bg: #ffffff;
    --text: #1f2937;
    --border: #e5e7eb;
}

/* ===== MODO OSCURO ===== */
body.dark {
    --bg: #0e2f25;
    --card-bg: #123f33;
    --text: #e6f4ee;
    --border: #1f5a4b;
}

/* =====================================================
   BASE
===================================================== */
body {
    background: var(--bg);
    color: var(--text);
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
    line-height: 1.4;
}

a {
    color: inherit;
}

/* =====================================================
   NAVBAR
===================================================== */
.navbar-offset {
    height: 72px;
}

.brand-text {
    font-weight: 600;
    color: var(--primary);
}

body.dark .navbar {
    background: #0b241d !important;
}

body.dark .navbar .nav-link,
body.dark .navbar .dropdown-item {
    color: #e6f4ee;
}

/* =====================================================
   HERO
===================================================== */
.hero {
    background:
        linear-gradient(rgba(2,105,55,.75), rgba(2,105,55,.75)),
        url("../img/carrusel123.jpg") center/cover no-repeat;
    color: #fff;
    padding: 3.5rem 1rem;
}

.hero h1 {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 700;
}

/* =====================================================
   BUSCADOR
===================================================== */
#searchApps {
    border-radius: 14px;
    border: 2px solid var(--primary);
    padding: 1rem;
}

body.dark #searchApps {
    background: var(--card-bg);
    color: var(--text);
    border-color: var(--primary-light);
}

/* =====================================================
   CARDS DE APLICACIONES (FORMA ORIGINAL)
===================================================== */
.cat-item {
    display: block;
    height: 100%;
    background: var(--card-bg);
    padding: 1.5rem 1rem;
    border-radius: 18px;
    text-align: center;
    text-decoration: none;
    color: inherit;
    border: 2px solid transparent;
    transition: all .3s ease;
}

.cat-item img {
    max-width: 70px;
    margin-bottom: .75rem;
}

.cat-item h6 {
    font-weight: 700;
    margin-bottom: .35rem;
}

.cat-item span {
    font-size: .9rem;
    line-height: 1.3;
}

.cat-item:hover,
.cat-item:focus {
    transform: translateY(-6px);
    border-color: var(--primary);
    box-shadow: 0 16px 30px rgba(0,0,0,.18);
}

/* =====================================================
   HEADINGS DE CATEGORÍAS
===================================================== */
h4 {
    font-weight: 700;
    margin-bottom: 1.25rem;
}

/* =====================================================
   FOOTER
===================================================== */
.footer {
    background: #012f1b;
    color: #fff;
    padding: 3.5rem 1rem;
}

.footer img {
    max-width: 280px;
    margin-bottom: 1rem;
}

/* =====================================================
   ACCESIBILIDAD
===================================================== */
:focus-visible {
    outline: 3px solid var(--primary-light);
    outline-offset: 3px;
}
