.popup2 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / .9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    color: #fff;
    animation: pulseGlow 1.5s infinite
}

.popup2.hidden2 {
    display: none
}

.popup2-container {
    display: flex;
    flex-direction: column;
    align-items: center
}

.popup2-logo {
    height: 65px;
    margin-bottom: 45px
}

.popup2-content {
    width: 450px;
    background: #202020;
    border-radius: 15px;
    padding: 40px 20px;
    text-align: center
}

.popup2-title {
    font-family: 'Montserrat',sans-serif;
    font-size: 24px;
    font-weight: bolder
}

.popup2-text {
    font-family: 'Montserrat',sans-serif;
    font-size: 18x;
    font-weight: 400;
    color: #fff;
    margin-top: 20px;
    margin-bottom: 20px
}

.popup2-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px
}

.reloadBtn12 {
    background: #c49832;
    color: #fff;
    height: 40px;
    width: 400px;
    padding: 5px;
    font-family: 'Montserrat',sans-serif;
    font-size: 12px;
    text-transform: uppercase;
    border-radius: 30px;
    cursor: pointer;
    border: none;
    font-weight: 700
}

.reloadBtn22 {
    background: #141414;
    color: #fff;
    height: 40px;
    width: 400px;
    padding: 5px;
    font-family: 'Montserrat',sans-serif;
    font-size: 12px;
    text-transform: uppercase;
    border-radius: 30px;
    cursor: pointer;
    border: none;
    font-weight: 700
}

.reloadBtn12:hover {
    background-color: #c49832
}

.reloadBtn22:hover {
    background-color: #181818
}


/* Estilos actualizados para el botón */
.whatsapp-btn {
    background: #c49832;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: block;
    margin: 20px auto 0;
}

.whatsapp-btn:hover {
    background: #dfaf40;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(196, 152, 50, 0.4);
}

/* Versión móvil */
@media (max-width: 768px) {
    .whatsapp-btn {
        width: 100%;
        max-width: 200px;
        padding: 10px 20px;
    }
}