html {
    scroll-behavior: auto;
}

/* Nav Desktop & Mobile Links */
.nav-link,
.mobile-nav-item {
    color: #c4c4c4;
    transition: all 0.3s ease;
}

/* Indicador de sección activa */
.nav-link.active,
.mobile-nav-item.active {
    color: #4ef3a1 !important;
}

/* Hover */
.nav-link:hover {
    color: #4ef3a1;
}

/* Botón Idioma */
.lang-toggle {
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.lang-toggle:hover {
    transform: scale(1.05);
    color: #4ef3a1;
    border-color: #4ef3a1;
}

/* Project Card Estructura */
.project-info-container {
    max-height: none;
    opacity: 1;
    margin-top: 1.5rem;
    display: block;
}

/* --- ANIMACIÓN DE RESPIRACIÓN (GLOW) --- */
@keyframes glow-pulse {
    0% {
        opacity: 0.05;
        transform: scaleY(1);
        filter: blur(100px);
    }
    50% {
        opacity: 0.15;
        transform: scaleY(1.15);
        filter: blur(90px);
    }
    100% {
        opacity: 0.05;
        transform: scaleY(1);
        filter: blur(100px);
    }
}

.glow-breathing {
    /* Velocidad reducida un 75% (de 6s a 10.5s) */
    animation: glow-pulse 10.5s infinite ease-in-out;
    will-change: opacity, transform, filter;
    transform-origin: bottom;
}
