.cotizar-hero{
    min-height: 90vh;
    background-image: url('/assets/images/general/cotizar-bg.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
}

.overlay-cotizar{
    position:absolute;
    inset:0;
    background: rgba(0,0,0,0.55);
}

.formulario-wow{
    max-width:700px;
    background:white;
    padding:40px;
}

.step-cotizador{
    transition: all .4s ease;
}

/* Modifica esta clase en cotizar.css */
.opcion-cotizador {
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 12px;
    cursor: pointer;
    background: #f8f9fa;
    transition: .3s;
    color: #333;
}

.opcion-cotizador.active{
    border:2px solid #000;
    background:#fff;
}

.opcion-cotizador:hover{
    transform:translateY(-4px);
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    background:white;
}

.opcion-cotizador img{
    width:100%;
    height:140px;
    object-fit:cover;
}

.formulario-wow h4 {
    color: #212529 !important;
    margin-top: 10px;
}