.glass-header {
    background: rgba(249, 249, 255, 0.7);
    backdrop-filter: blur(24px);
}

.ambient-shadow {
    box-shadow: 0 12px 32px rgba(66, 52, 104, 0.06);
}

.signature-gradient {
    background: linear-gradient(135deg, #423468 0%, #5a4b81 100%);
}

/* Fix for rounded corners disappearing during transitions/transforms */
.rounded-\[2\.5rem\] {
    -webkit-mask-image: -webkit-radial-gradient(white, black);
}

.isolate {
    isolation: isolate;
}

/* Logo responsive styles for mobile-first design */
.logo-responsive {
    display: block;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

@media (max-width: 640px) {
    .logo-responsive {
        max-width: 100%;
    }
}
.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

@media (min-width: 1300px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr;
    }
}

/* Smooth scroll para todo el sitio */
html {
    scroll-behavior: smooth;
}

/* Hover animado para items del menú */
nav a {
    position: relative;
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

nav ul a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 50%;
    width: 0;
    height: 3px;
    background-color: #423468; /* Color morado primary */
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

nav ul a:hover {
    color: #006b5d; /* Color verde oscuro secondary */
}

nav ul a:hover::after {
    width: 100%;
    left: 0;
    transform: translateX(0);
}

.main-button:hover {
    background: #006b5d !important;
}


/* Footer menu hover */
footer a:hover {
    color: #423468; /* Color morado primary */
    text-decoration: none;
}
