/* FIGURAS GEOMÉTRICAS DE FONDO */
.shapes-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.shape {
    position: absolute;
    opacity: 0.7;
    filter: blur(30px);
    border-radius: 50%;
    background: linear-gradient(45deg, var(--primary), var(--accent));
    animation: float 15s infinite ease-in-out;
}

.shape:nth-child(1) {
    width: 300px;
    height: 300px;
    top: 10%;
    left: 5%;
    background: linear-gradient(45deg, var(--primary), #ff6b6b);
    animation-delay: 0s;
}

.shape:nth-child(2) {
    width: 250px;
    height: 250px;
    top: 60%;
    left: 15%;
    background: linear-gradient(45deg, var(--accent), #4ecdc4);
    animation-delay: -5s;
}

.shape:nth-child(3) {
    width: 200px;
    height: 200px;
    top: 20%;
    right: 10%;
    background: linear-gradient(45deg, #ff6b6b, var(--secondary));
    animation-delay: -10s;
}

.shape:nth-child(4) {
    width: 350px;
    height: 350px;
    bottom: 5%;
    right: 5%;
    background: linear-gradient(45deg, var(--secondary), #4ecdc4);
    animation-delay: -7s;
}

/* ANIMACIONES */
@keyframes float {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(20px, 30px) rotate(120deg);
    }
    66% {
        transform: translate(-20px, 20px) rotate(240deg);
    }
    100% {
        transform: translate(0, 0) rotate(360deg);
    }
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .hero {
        flex-direction: column;
        text-align: center;
    }

    .hero p {
        margin: 0 auto 30px;
    }

    nav ul {
        gap: 15px;
    }

    .hero h1 {
        font-size: 2.8rem;
    }

    .booking {
        padding: 30px 20px;
    }
}

@media (max-width: 600px) {
    header {
        flex-direction: column;
        gap: 20px;
    }

    nav ul {
        gap: 10px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero h1 {
        font-size: 2.3rem;
    }

    .section-title {
        font-size: 2rem;
    }
}