/* =========================================
   CONTROL TOTAL
   PANTALLA DE SERVICIO SUSPENDIDO
========================================= */

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

body {
    font-family: "Segoe UI", Arial, sans-serif;

    background:
        radial-gradient(
            circle at top,
            #1e3a8a 0%,
            #0f172a 45%,
            #020617 100%
        );

    min-height: 100vh;

    color: #1e293b;
}


/* =========================================
   CONTENEDOR
========================================= */

.page {
    min-height: 100vh;

    display: flex;
    justify-content: center;
    align-items: center;

    padding: 30px 15px;
}


/* =========================================
   TARJETA PRINCIPAL
========================================= */

.card {

    width: 100%;
    max-width: 560px;

    background: rgba(255,255,255,0.98);

    border-radius: 24px;

    padding: 35px 38px;

    box-shadow:
        0 30px 80px rgba(0,0,0,0.35);

    text-align: center;

    animation: aparecer 0.6s ease;
}


@keyframes aparecer {

    from {
        opacity: 0;
        transform: translateY(20px) scale(.97);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }

}


/* =========================================
   MARCA
========================================= */

.brand {

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 12px;

    margin-bottom: 28px;
}


.brand-icon {

    width: 48px;
    height: 48px;

    border-radius: 14px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: linear-gradient(
        135deg,
        #2563eb,
        #38bdf8
    );

    color: white;

    font-size: 25px;
    font-weight: bold;

    box-shadow:
        0 8px 20px rgba(37,99,235,.30);
}


.brand-name {

    font-size: 22px;
    font-weight: 800;

    color: #0f172a;

    text-align: left;
}


.brand-subtitle {

    font-size: 12px;

    color: #64748b;

    text-align: left;
}


/* =========================================
   ICONO DE ALERTA
========================================= */

.warning-circle {

    width: 72px;
    height: 72px;

    margin: 0 auto 18px;

    border-radius: 50%;

    background: #fff7ed;

    border: 7px solid #ffedd5;

    display: flex;
    justify-content: center;
    align-items: center;

    color: #ea580c;

    font-size: 30px;
    font-weight: 800;
}


h1 {

    font-size: 27px;

    line-height: 1.2;

    color: #0f172a;

    margin-bottom: 14px;
}


.intro {

    color: #64748b;

    font-size: 15px;

    line-height: 1.6;

    margin-bottom: 22px;
}


/* =========================================
   AVISO
========================================= */

.notice {

    text-align: left;

    padding: 18px 20px;

    border-radius: 15px;

    background: #fff7ed;

    border-left: 4px solid #f97316;

    margin-bottom: 24px;
}


.notice-title {

    color: #c2410c;

    font-weight: 800;

    font-size: 15px;

    margin-bottom: 7px;
}


.notice p {

    color: #7c2d12;

    font-size: 14px;

    line-height: 1.55;
}


.loss-message {

    margin-top: 7px;
}


/* =========================================
   PAGO / QR
========================================= */

.payment-section {

    padding: 20px;

    border-radius: 18px;

    background: #f8fafc;

    border: 1px solid #e2e8f0;

    margin-bottom: 20px;
}


.payment-title {

    font-size: 19px;

    font-weight: 800;

    color: #0f172a;

    margin-bottom: 5px;
}


.payment-text {

    font-size: 13px;

    color: #64748b;

    margin-bottom: 15px;
}


.qr-container {

    width: 490px;
    height: 490px;

    background: white;

    margin: 0 auto;

    padding: 10px;

    border-radius: 15px;

    border: 1px solid #e2e8f0;

    box-shadow:
        0 8px 25px rgba(15,23,42,.08);
}


.qr-container img {

    width: 100%;
    height: 100%;

    object-fit: contain;

    display: block;
}


.qr-caption {

    margin-top: 12px;

    font-size: 12px;

    color: #64748b;
}


/* =========================================
   WHATSAPP
========================================= */

.whatsapp-box {

    display: flex;

    align-items: center;

    gap: 15px;

    text-align: left;

    padding: 18px;

    border-radius: 17px;

    background: #f0fdf4;

    border: 1px solid #bbf7d0;

    margin-bottom: 18px;
}


.whatsapp-icon {

    width: 48px;
    height: 48px;

    flex-shrink: 0;

    border-radius: 50%;

    background: #22c55e;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 23px;
}


.whatsapp-title {

    color: #166534;

    font-weight: 800;

    font-size: 15px;

    margin-bottom: 4px;
}


.whatsapp-text {

    color: #166534;

    font-size: 13px;

    line-height: 1.45;

    margin-bottom: 12px;
}


.whatsapp-button {

    display: inline-block;

    background: #16a34a;

    color: white;

    text-decoration: none;

    font-weight: 700;

    font-size: 13px;

    padding: 10px 18px;

    border-radius: 9px;

    transition: .2s;
}


.whatsapp-button:hover {

    background: #15803d;

    transform: translateY(-1px);

}


.phone {

    display: inline-block;

    margin-left: 8px;

    color: #166534;

    font-size: 12px;
}


/* =========================================
   CONTINUIDAD
========================================= */

.continuity {

    display: flex;

    align-items: flex-start;

    gap: 12px;

    text-align: left;

    padding: 15px;

    background: #eff6ff;

    border-radius: 14px;

    border: 1px solid #dbeafe;

    margin-bottom: 25px;
}


.continuity-icon {

    width: 25px;
    height: 25px;

    border-radius: 50%;

    background: #2563eb;

    color: white;

    display: flex;

    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    font-size: 13px;
}


.continuity strong {

    color: #1e40af;

    font-size: 13px;
}


.continuity p {

    color: #475569;

    font-size: 12px;

    line-height: 1.45;

    margin-top: 3px;
}


/* =========================================
   FOOTER
========================================= */

.footer {

    border-top: 1px solid #e2e8f0;

    padding-top: 18px;

    display: flex;

    justify-content: center;

    gap: 12px;

    flex-wrap: wrap;

    font-size: 11px;

    color: #94a3b8;
}


.footer strong {

    color: #64748b;
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 600px) {

    .page {

        padding: 15px 10px;

        align-items: flex-start;
    }


    .card {

        margin-top: 10px;

        padding: 27px 20px;

        border-radius: 20px;
    }


    h1 {

        font-size: 23px;
    }


    .intro {

        font-size: 14px;
    }


    .whatsapp-box {

        align-items: flex-start;
    }


    .phone {

        display: block;

        margin-left: 0;

        margin-top: 7px;
    }

}