/* Reset general */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Fondo general */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #052b65;
    color: white;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
}

/* Fondo animado */
.animated-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

.wave {
    position: absolute;
    bottom: 0;
    width: 200%;
    height: 200%;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 43%;
    animation: wave 15s infinite linear;
}

/* Diferentes capas de movimiento */
.wave1 {
    animation-delay: 0s;
}

.wave2 {
    animation-delay: -5s;
    background: rgba(255, 255, 255, 0.07);
}

.wave3 {
    animation-delay: -10s;
    background: rgba(255, 255, 255, 0.03);
}

@keyframes wave {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Contenedor principal */
.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    z-index: 1;
}

/* Logo */
.logo {
    max-width: 300px;
    width: 80%;
    height: auto;
    filter: drop-shadow(0px 4px 8px rgba(0,0,0,0.5));
    opacity: 0;
    transform: scale(0.8);
    transition: all 1s ease-in-out;
}

/* Texto principal */
.coming-soon {
    font-size: 2rem;
    font-weight: bold;
    color: #e0e1dd;
    opacity: 0;
    transform: translateY(20px);
    transition: all 1s ease-in-out 0.3s;
}

/* Animación de entrada */
.animate-logo {
    animation: fadeZoom 1.5s ease forwards;
}

.animate-text {
    animation: fadeUp 2s ease forwards;
    animation-delay: 1s;
}

/* Keyframes para animaciones */
@keyframes fadeZoom {
    0% {
        opacity: 0;
        transform: scale(0.7);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes fadeUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Footer */
footer {
    position: fixed;
    bottom: 10px;
    text-align: center;
    font-size: 0.9rem;
    color: #a8dadc;
    z-index: 1;
}
