* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    height: 100vh;
    overflow: hidden;
    color: #ffffff;
}

/* Fondo animado */
.background-animation {
    position: fixed;
    width: 100%;
    height: 100%;
    background: linear-gradient(270deg, #0d2c4a, #1b4d7a, #0d2c4a);
    background-size: 600% 600%;
    animation: gradientMove 15s ease infinite;
    z-index: -1;
}

@keyframes gradientMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Contenedor */
.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
}

/* Logo */
.logo-box img {
    width: 280px;
    opacity: 0;
    transform: translateY(-30px);
    animation: fadeIn 1.5s ease forwards;
}

/* Título */
.title {
    margin-top: 25px;
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    letter-spacing: 1px;
    opacity: 0;
    animation: fadeIn 2s ease forwards;
}

/* Subtítulo */
.subtitle {
    margin-top: 15px;
    font-size: 16px;
    opacity: 0;
    animation: fadeIn 2.5s ease forwards;
}

/* Loader animado */
.loader {
    margin-top: 30px;
}

.loader span {
    display: inline-block;
    width: 10px;
    height: 10px;
    margin: 5px;
    background: #ffffff;
    border-radius: 50%;
    animation: bounce 1.5s infinite ease-in-out;
}

.loader span:nth-child(2) {
    animation-delay: 0.2s;
}

.loader span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes bounce {
    0%, 80%, 100% {
        transform: scale(0);
        opacity: 0.3;
    }
    40% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Footer */
.footer {
    position: absolute;
    bottom: 20px;
    font-size: 13px;
    opacity: 0.7;
}

/* Animación fade */
@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.countdown {
    display: flex;
    gap: 14px;
    margin-top: 28px;
    justify-content: center;
    flex-wrap: wrap;
}

.countdown div {
    min-width: 75px;
    padding: 14px 10px;
    border: 1px solid rgba(255,255,255,0.25);
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(6px);
    border-radius: 14px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.18);
}

.countdown strong {
    display: block;
    font-size: 26px;
    font-weight: 600;
}

.countdown span {
    display: block;
    margin-top: 4px;
    font-size: 12px;
    opacity: 0.8;
}

.status-message {
    margin-top: 22px;
    font-size: 14px;
    opacity: 0.9;
}

.whatsapp-btn {
    margin-top: 18px;
    display: inline-block;
    padding: 13px 24px;
    color: #ffffff;
    text-decoration: none;
    border-radius: 999px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    box-shadow: 0 8px 25px rgba(0,0,0,0.25);
    transition: all 0.25s ease;
}

.whatsapp-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.35);
}