/* Estilos generales del Navbar */
.navbar {
    background-color: #0b2c64 !important;
    padding: 10px 20px;
}

/* Logo */
.navbar-brand {
    display: flex;
    align-items: center;
    padding-right: 20px;
}

/* Sección de usuario */
.navbar-user {
    display: flex;
    align-items: center;
    margin: 0 100px;
}

.navbar-text {
    color: white;
    font-size: 1rem;
    font-weight: 600;
    text-transform: capitalize;
}
/* Sub-navbar */
.sub-navbar {
    background-color: #243b70;
}

/* Navegación distribuida uniformemente */
.nav-spread {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}

.nav-spread .nav-item {
    flex: 1;
    text-align: center;
}

.sub-navbar .nav-link {
    color: white !important;
    font-weight: 500;
    padding: 10px 0;
}

/* Botón Perfil */
.btn-profile {
    background-color: #FBF0E7;
    color: #13235b;
    border-style: solid;
    border-width: 2px 2px 2px 2px;
    border-color: #FBF0E7;
    border-radius: 30px;
    padding: 3px 45px;
}
.btn-profile:hover {
    background-color: #e1e1e1;
}


/* Estilos del banner */

#trial-banner img {
    width: 100vw;
    height: 8vw;
    margin-bottom: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}


.trial-banner-text {
    z-index: 2;
    color: #fff;
    text-align: left;
    max-width: 40vw;
    min-width: 180px;
    font-weight: 600;
    text-shadow: 0 2px 8px rgba(0,0,0,0.25);
    position: absolute;
    left: 3vw;
    top: 40%;
    transform: translateY(-50%);
}

