/* Estilos generales para la Navbar */
.navbar {
    background: linear-gradient(135deg, #7A90B7 0%, #B8C6E5 100%); /* Tonos suaves y profesionales */
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1); /* Sombra sutil */
    padding: 10px 0;
    transition: background 0.3s ease; /* Transición suave al hacer hover en navbar */
}

.navbar:hover {
    background: linear-gradient(135deg, #6A7A99 0%, #A6B9D7 100%);
}

/* Logo */
.navbar-brand {
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem; /* Tamaño de fuente ajustado */
    display: flex;
    align-items: center;
}

.navbar-brand img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15); /* Sombra en el logo */
}

/* Enlaces de navegación */
.navbar-nav .nav-link {
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    color: #3A3A3A; /* Color de texto oscuro pero no tan agresivo */
    padding: 10px 15px;
    margin-right: 10px;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: #4D90FE; /* Color de hover más suave */
    background-color: rgba(77, 144, 254, 0.1); /* Fondo suave al hacer hover */
    border-radius: 5px;
}

/* Botón "Consulta Gratis" */
.navbar .btn {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid white;
    border-radius: 30px;
    padding: 8px 25px;
    font-weight: 500;
    color: white;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.navbar .btn:hover {
    background-color: white;
    color: #4D90FE;
    border-color: #4D90FE;
}

/* Responsividad (ajustes en pantallas pequeñas) */
@media (max-width: 992px) {
    .navbar-nav .nav-link {
        padding: 8px 12px;
        font-size: 0.95rem; /* Texto más pequeño en móviles */
    }

    .navbar .btn {
        padding: 6px 18px;
        font-size: 0.9rem; /* Botón más pequeño */
    }
}

@media (max-width: 768px) {
    .navbar-brand span {
        font-size: 1.2rem; /* Ajustamos el tamaño de texto en móvil */
    }
}
