/* color de fondo
body {
    font-family: Arial, sans-serif;
    background-color: #f2f2f2;
    color: #333;
    margin: 0;
    padding: 0;
}
*/
.container {
    max-width: 650px;
    margin: 10px auto;
    background-color: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
    text-align: center;
    animation: containerFlicker 3s infinite;
}
/* sombra de tabla
@keyframes containerFlicker {
    0%, 100% { box-shadow: 0 6px 20px rgba(0,0,0,0.2); }
    20%, 60% { box-shadow: 0 12px 30px rgba(0,0,0,0.4); }
}
*/
.logo {
    max-width: 400px;
    margin-bottom: 0px;
    width: 80%;
    height: auto;
    transform-origin: center;
}

@keyframes swing {
    0% { transform: rotateY(0deg); }
    50% { transform: rotateY(25deg); }
    100% { transform: rotateY(0deg); }
} 

.alerta-servicio {
    font-size: 1.8em;
    font-weight: bold;
    color: #fff;
    background: linear-gradient(90deg, #F20A1B, #f77f00);
    padding: 15px 20px;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

b {
    font-size:1em;
    line-height: 1;
    margin-bottom: 0px;
}

.datetime {
    font-size: 1.1em;
    font-weight: normal;
    color: #333;
    background: #79E8FC;
    padding: 10px 15px;
    border-radius: 10px;
    display: inline-block; /* Aquí usamos el inline-block */
    margin-bottom: 20px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/*.wifi-icon {
    width: 100px;
    height: 80px;
    margin: 0 auto 25px auto;
    position: relative;
}

.wifi-arc {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 4px solid #e63946;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.3);
    opacity: 0.2;
    animation: arcPulse 1.5s infinite;
}

.wifi-arc:nth-child(1) { animation-delay: 0s; }
.wifi-arc:nth-child(2) { animation-delay: 0.3s; transform: translate(-50%, -50%) scale(0.55); }
.wifi-arc:nth-child(3) { animation-delay: 0.6s; transform: translate(-50%, -50%) scale(0.8); }

@keyframes arcPulse {
    0%,100% { opacity: 0.1; transform: translate(-50%, -50%) scale(0.3); }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}

.buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.buttons a {
    flex: 1 1 45%;
    min-width: 150px;
    padding: 15px 20px;
    font-size: 1.1em;
    font-weight: bold;
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 6px 12px rgba(0,0,0,0.25);
    animation: glowSync 1.5s infinite alternate;
}

.cobranza { background: linear-gradient(145deg, #ff9f1c, #ffb84d); }
.soporte { background: linear-gradient(145deg, #1d3557, #457b9d); }
.verificar { background: linear-gradient(145deg, #2a9d8f, #4ec5b8); }

@keyframes glowSync {
    0%,100% { box-shadow: 0 6px 12px rgba(0,0,0,0.25), 0 0 5px rgba(255,255,255,0.1); }
    50% { box-shadow: 0 10px 20px rgba(0,0,0,0.3), 0 0 25px rgba(255,255,255,0.5); }
}

*/
.bank-info {
    text-align: left;
    background-color: #f7f7f7;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 25px;
}
.qr { text-align: center; margin-top: 20px; }
.qr img { max-width: 480px; width: 50%; height: auto; }

footer { margin-top: 30px; font-size: 14px; color: #999; }

@media (max-width: 500px) {
    .buttons a { flex: 1 1 100%; }
    .alerta-servicio { font-size: 1.5em; }
}