/* Estilos para el efecto de degradado con olas */
.waves-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
    will-change: transform;
    transform: translateZ(0);
    backface-visibility: hidden;
    perspective: 1000px;
}

.gradient-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(0, 0, 0, 0.85) 0%, 
        rgba(0, 80, 77, 0.7) 50%,
        rgba(0, 161, 155, 0.5) 100%);
    z-index: 1;
    animation: gradientMovement 20s ease-in-out infinite;
    background-size: 300% 300%;
    backdrop-filter: blur(1px);
    -webkit-backdrop-filter: blur(1px);
}

@keyframes gradientMovement {
    0% { background-position: 0% 50%; }
    25% { background-position: 50% 25%; }
    50% { background-position: 100% 50%; }
    75% { background-position: 50% 75%; }
    100% { background-position: 0% 50%; }
}

.wave {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0.4;
    mix-blend-mode: overlay;
    z-index: 2;
}

/* Aseguramos que el contenido quede por encima del efecto */
.hero-content {
    position: relative;
    z-index: 3;
}