body {
    /* Padding para compensar el header y footer fijos */
    padding-top: 50px;
    padding-bottom: 120px; /* Espacio para el footer fijo */
}

main {
    min-height: 60vh;
}

/* Minimal responsive helpers */
.flash-success { color: #155724; background: #d4edda; padding: .5rem .75rem; border-radius: .25rem; }
.flash-error { color: #721c24; background: #f8d7da; padding: .5rem .75rem; border-radius: .25rem; }

/* Navbar Neuraxis */
.neuraxis-navbar {
    background-color: #0e5a7b;
    border-bottom: 2px solid #c0392b;
}

.neuraxis-navbar .nav-link {
    color: rgba(255,255,255,.9);
}

.neuraxis-navbar .nav-link:hover,
.neuraxis-navbar .nav-link:focus,
.neuraxis-navbar .nav-link.active {
    color: #ffffff;
}

.neuraxis-navbar .navbar-brand { color: #ffffff; }

.neuraxis-navbar .dropdown-menu {
    border-radius: .5rem;
    overflow: hidden;
}

/* Estilos del Footer Fijo */
.neuraxis-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #f8f9fa; /* Color de fondo de Bootstrap 'bg-light' */
    border-top: 3px solid #0e5a7b;
    z-index: 1020; /* Asegura que esté por encima del contenido */
    padding: 1rem 0; /* Espaciado vertical */
}

.neuraxis-footer a {
    color: #0e5a7b;
}

.neuraxis-footer a:hover {
    text-decoration: underline;
}

/* Estilos para la nueva sección de portada */
.hero-section {
    height: 90vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.text-institutional-blue {
    color: #0e5a7b;
}


  