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

body {
    overflow-x: hidden;
}

div{
    background: black;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 100vh;
    padding: 20px;
    text-align: center;
}

h1{
    font-family: "Montserrat", sans-serif;
    font-size: clamp(24px, 6vw, 38px);
    color: #FF69B4;
}

p{
    margin: 15px 0;
    font-size: clamp(18px, 5vw, 26px);
    font-family: "Montserrat", sans-serif;
    color: white;
    font-weight: bold;
}

.proximamente {
    display: inline-block;
    font-weight: bold;
    font-family: "Montserrat", sans-serif;
    white-space: nowrap;
    overflow: hidden;
    max-width: 100%;
}

.proximamente span {
    display: inline-block;
    color: #ff1493;
    animation: pulse 1.5s ease infinite;
    margin: 0 2px;
    font-size: clamp(24px, 7vw, 48px);
}

/* Colores rosas alternados */
.proximamente span:nth-child(odd) {
    color: #ff69b4;
}

/* TODAS las letras tendrán la misma animación SIN delays */
@keyframes pulse {
    0% { 
        transform: scale(1);
        opacity: 1;
        text-shadow: 0 0 0 rgba(255, 20, 147, 0.7);
    }
    50% { 
        transform: scale(1.15);
        opacity: 0.8;
        text-shadow: 0 0 20px rgba(255, 20, 147, 0.9);
    }
    100% { 
        transform: scale(1);
        opacity: 1;
        text-shadow: 0 0 0 rgba(255, 20, 147, 0.7);
    }
}


/* Ajustes para pantallas pequeñas */
@media (max-width: 600px) {
    .proximamente span {
        font-size:18px;
        margin: 0; /* Menor espacio entre letras */
        padding:0;
        animation: pulse 0.8s ease infinite alternate;
    }
    
    img{
        width:400px;
    }
    

}
