/* =============================================
   ESTILOS PÁGINA PAGO COMPLETADO
   ============================================= */

body {
    background-color: #f4f7f6;
}

.pago-completo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80vh;
    padding: 2rem;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.pago-completo-card {
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    text-align: center;
    padding: 3rem 2.5rem;
    max-width: 600px;
    width: 100%;
    border-top: 5px solid #28a745;
    animation: fadeIn 0.5s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.pago-completo-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #28a745;
    color: #fff;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    animation: icon-pop 0.5s ease-out 0.2s;
    transform: scale(0);
    animation-fill-mode: forwards;
}

@keyframes icon-pop {
    from {
        transform: scale(0);
    }
    to {
        transform: scale(1);
    }
}

.pago-completo-titulo {
    font-size: 2.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.pago-completo-mensaje {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
}

.pago-completo-detalles {
    background-color: #f9f9f9;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 2rem;
    text-align: left;
}

.pago-completo-detalles p {
    margin: 0.5rem 0;
    color: #555;
}

.pago-completo-detalles strong {
    color: #333;
}

.pago-completo-envio-info {
    background-color: #e8f4fd;
    border: 1px solid #bde0fe;
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    text-align: left;
    color: #0c5460;
}

.pago-completo-envio-info i {
    font-size: 1.5rem;
    margin-right: 1rem;
}

.pago-completo-envio-info a {
    color: #007bff;
    font-weight: 600;
    text-decoration: none;
}

.pago-completo-envio-info a:hover {
    text-decoration: underline;
}

.pago-completo-boton {
    display: inline-block;
    background-color: #28a745;
    color: #fff;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.pago-completo-boton:hover {
    background-color: #218838;
    transform: translateY(-2px);
}

.pago-completo-boton i {
    margin-right: 0.5rem;
}