/* Estilos Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body,
html {
    height: 100%;
    background-color: #000;
    /* Fondo Negro */
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow: hidden;
}

/* Contenedor Principal */
.container {
    text-align: center;
    padding: 20px;
}

/* Logo Responsivo */
.logo {
    max-width: 450px;
    /* Tamaño máximo en pantallas grandes */
    width: 60%;
    /* Tamaño en pantallas pequeñas */
    height: auto;
    margin-bottom: 30px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* Texto Próximamente */
.texto-proximamente {
    color: #c7af98;
    font-size: 1rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 300;
}

/* Animación de los puntos */
.puntos span {
    display: inline-block;
    animation: blink 1.4s infinite both;
}

.puntos span:nth-child(2) {
    animation-delay: 0.2s;
}

.puntos span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes blink {
    0% {
        opacity: 0.2;
    }

    20% {
        opacity: 1;
    }

    100% {
        opacity: 0.2;
    }
}

/* Ajustes para resoluciones muy grandes */
@media (min-width: 1200px) {
    .logo {
        max-width: 450px;
    }

    .texto-proximamente {
        font-size: 1rem;
    }
}