body{

    background:linear-gradient(180deg,#f8f9fa 0%,#eef2f5 100%);

    font-family:Arial, Helvetica, sans-serif;

}

.container{

    max-width:450px;

    min-height:100vh;

    display:flex;

    justify-content:center;

    align-items:center;

}

.card-principal{

    background:white;

    width:100%;

    border-radius:28px;

    padding:45px 35px;

    box-shadow:
        0 12px 40px rgba(0,0,0,.10),
        0 2px 8px rgba(0,0,0,.05);

    text-align:center;

    animation:entrada .35s ease;

}

.logo{

    width:220px;

    margin-bottom:35px;

}

h2{

    font-weight:bold;

    color:#222;

}

.subtitulo{

    color:#777;

    margin-bottom:35px;

}

.boton-principal{

    width:100%;

    height:60px;

    margin-bottom:15px;

    border-radius:18px;

    font-size:20px;

    font-weight:600;

    transition:.25s;

}

.boton-principal:hover{

    transform:translateY(-2px);

    box-shadow:0 10px 20px rgba(0,0,0,.15);

}

.footer{

    margin-top:35px;

    color:#777;

    font-size:14px;

}

.requisitos{

    text-align:left;

    font-size:17px;

    line-height:1.6;

}

.btn-link{

    text-decoration:none;

    margin-top:10px;

}

@keyframes entrada{

    from{

        opacity:0;

        transform:translateY(15px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}/* =========================
   PANTALLA DE EVALUACIÓN
========================= */

.evaluacion-icono {
    font-size: 48px;
    margin-bottom: 15px;
}

.contador {
    font-size: 64px;
    font-weight: 700;
    margin: 20px 0 5px;
}

.texto-espera {
    color: #666;
    font-size: 14px;
}

.productos-espera {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
}

.producto-espera {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px;
    border-radius: 12px;
    background: #f5f5f5;
    text-align: left;
}

.producto-espera i {
    font-size: 28px;
}

.producto-espera strong {
    display: block;
}

.producto-espera span {
    display: block;
    font-size: 13px;
    color: #666;
}


/* =========================
   RESULTADO
========================= */

.resultado-icono {
    font-size: 60px;
    margin-bottom: 15px;
}

.datos-aprobacion {
    margin-top: 25px;
}

.dato-resultado {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    margin-bottom: 10px;
    border-radius: 12px;
    background: #f5f5f5;
}

.dato-resultado span {
    font-size: 14px;
    color: #666;
}

.dato-resultado strong {
    font-size: 20px;
}
/* =========================
   FORMULARIO DE DATOS
========================= */

.form-group {
    width: 100%;
    margin-bottom: 22px;
    text-align: left;
}

.form-group label {
    display: block;
    width: 100%;
    margin-bottom: 8px;
    font-size: 18px;
    font-weight: 500;
    text-align: left;
}

.form-group input,
.form-group select {
    display: block;
    width: 100%;
    min-height: 50px;
    padding: 10px 14px;
    box-sizing: border-box;
    font-size: 17px;
    border-radius: 10px;
}

/* =========================
   AJUSTE PARA CELULAR
========================= */

@media (max-width: 576px) {

    .card-principal {
        padding: 38px 24px;
    }

    .form-group {
        margin-bottom: 20px;
    }

    .form-group label {
        font-size: 18px;
        margin-bottom: 8px;
    }

    .form-group input,
    .form-group select {
        min-height: 52px;
        font-size: 17px;
    }

}