/* DISEÑO ORIGINAL RESTAURADO */

.cea-scope {
    font-family: 'Poppins', sans-serif !important;
    display: flex;
    justify-content: center;
    padding: 30px;
}

.cea-card {
    background: #ffffff;
    width: 100%;
    max-width: 480px;
    padding: 40px;
    border-radius: 30px; /* Bordes muy curvos */
    box-shadow: 0 10px 40px rgba(0,0,0,0.08); /* Sombra elegante */
    text-align: center;
    position: relative;
}

.cea-card img {
    max-width: 150px;
    margin-bottom: 25px;
}

.cea-card h3 {
    font-weight: 700 !important;
    font-size: 20px !important;
    color: #333 !important;
    margin-bottom: 25px !important;
}

/* INPUTS REDONDOS */
.cea-field {
    width: 100%;
    padding: 15px 20px;
    margin-bottom: 15px;
    border: 1px solid #e1e1e1;
    border-radius: 50px; /* Estilo píldora */
    font-size: 14px;
    color: #555;
    background: #fff;
    outline: none;
    box-sizing: border-box;
}

.cea-field:focus {
    border-color: #ff8c00;
}

/* BOTONES REDONDOS NARANJAS */
.cea-btn {
    width: 100%;
    padding: 16px;
    background: #ff8c00; /* Naranja */
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    border: none;
    border-radius: 50px; /* Botón píldora */
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(255,140,0,0.3);
    transition: 0.3s;
    margin-top: 10px;
}

.cea-btn:hover {
    background: #e67e00;
    transform: translateY(-2px);
}

/* PASOS */
.cea-step { display: none; }
.cea-step.active { display: block; animation: fadeUp 0.5s; }

/* COMBOS */
#combo-box {
    background: #fff8f0;
    border: 1px dashed #ff8c00;
    padding: 20px;
    border-radius: 20px;
    margin-bottom: 20px;
}

/* TEXTO TOTAL */
#final-total {
    font-size: 40px;
    font-weight: 800;
    color: #ff8c00;
    margin: 20px 0;
}

@keyframes fadeUp {
    from { opacity:0; transform:translateY(10px); }
    to { opacity:1; transform:translateY(0); }
}