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

#twa-advisor{
    display:flex;
    gap:40px;
    align-items:flex-start;
    max-width:1400px;
    margin:0 auto;
}

/* =====================================================
   WIZARD
===================================================== */

.twa-wizard{
    flex:1;
    min-width:0;
}

.twa-header{
    margin-bottom:40px;
}

.twa-kicker{
    display:inline-block;
    font-size:14px;
    font-weight:600;
    color:#00B5E2;
    text-transform:uppercase;
    letter-spacing:1px;
    margin-bottom:10px;
}

.twa-header h2{
    font-size:42px;
    line-height:1.15;
    margin:0 0 15px;
}

.twa-header p{
    font-size:18px;
    opacity:.75;
    max-width:700px;
}

/* =====================================================
   PROGRESO
===================================================== */

.twa-progress-wrapper{
    margin-bottom:50px;
}

.twa-progress-bar{
    width:100%;
    height:8px;
    background:#E5E7EB;
    border-radius:50px;
    overflow:hidden;
}

.twa-progress-fill{
    width:0%;
    height:100%;
    background:#00B5E2;
    transition:all .35s ease;
}

.twa-progress-text{
    margin-top:10px;
    font-size:14px;
    font-weight:600;
}

/* =====================================================
   PREGUNTAS
===================================================== */

.twa-question{
    display:none;
    animation:twaFade .4s ease;
}

.twa-question.active{
    display:block;
}

.twa-question-title{
    font-size:32px;
    line-height:1.2;
    margin-bottom:30px;
}

/* =====================================================
   RESPUESTAS
===================================================== */

.twa-options{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:20px;
}

.twa-answer{
    border:2px solid #E5E7EB;
    background:#fff;
    border-radius:16px;
    padding:25px;
    cursor:pointer;
    transition:.25s;
    min-height:90px;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    font-size:18px;
    font-weight:600;
}

.twa-answer:hover{
    border-color:#00B5E2;
    background:#F4FCFF;
    transform:translateY(-2px);
}

.twa-answer.active{
    border-color:#00B5E2;
    background:#F4FCFF;
}

/* =====================================================
   SIDEBAR
===================================================== */

.twa-sidebar{
    width:380px;
    flex-shrink:0;
}

.twa-sidebar-card{
    position:sticky;
    top:120px;
    background:#fff;
    border:1px solid #E5E7EB;
    border-radius:24px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.06);
}

.twa-sidebar-header{
    background:#00B5E2;
    color:#fff;
    padding:18px 25px;
    font-weight:600;
}

#twa-result{
    padding:25px;
}

/* =====================================================
   PLACEHOLDER
===================================================== */

.twa-placeholder{
    text-align:center;
}

.twa-placeholder-icon{
    font-size:48px;
    margin-bottom:20px;
}

.twa-placeholder h4{
    font-size:24px;
    margin-bottom:15px;
}

.twa-placeholder p{
    opacity:.75;
}

/* =====================================================
   RESULTADO
===================================================== */

.twa-result-card h3{
    font-size:28px;
    margin-bottom:20px;
}

.twa-result-card img{
    width:100%;
    height:auto;
    border-radius:12px;
    margin-bottom:20px;
}

.twa-price{
    font-size:30px;
    font-weight:700;
    margin:15px 0;
}

.twa-result-card .button{
    display:block;
    width:100%;
    text-align:center;
    padding:14px;
    border-radius:10px;
    background:#00B5E2;
    color:#fff;
    text-decoration:none;
    font-weight:600;
}

/* =====================================================
   ANIMACIONES
===================================================== */

@keyframes twaFade{

    from{
        opacity:0;
        transform:translateY(15px);
    }

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

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

@media(max-width:1024px){

    #twa-advisor{
        flex-direction:column;
    }

    .twa-sidebar{
        width:100%;
    }

    .twa-sidebar-card{
        position:relative;
        top:auto;
    }
}

@media(max-width:768px){

    .twa-header h2{
        font-size:30px;
    }

    .twa-question-title{
        font-size:24px;
    }

    .twa-options{
        grid-template-columns:1fr;
    }

    .twa-answer{
        min-height:75px;
        font-size:16px;
    }
}


/* =====================================================
   TARJETA PRODUCTO
===================================================== */

.twa-result-card{
    display:flex;
    flex-direction:column;
    gap:20px;
}

.twa-result-card h3{
    margin:0;
    font-size:28px;
    line-height:1.2;
}

.twa-result-card img{
    width:100%;
    height:auto;
    border-radius:16px;
}

/* =====================================================
   PRECIOS
===================================================== */

.twa-prices{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:15px;
}

.twa-price-block{
    background:#F8FAFC;
    border:1px solid #E5E7EB;
    border-radius:14px;
    padding:15px;
}

.twa-price-label{
    display:block;
    font-size:13px;
    text-transform:uppercase;
    letter-spacing:.5px;
    color:#6B7280;
    margin-bottom:8px;
}

.twa-price-value{
    display:block;
    font-size:28px;
    font-weight:700;
    line-height:1;
}

.twa-price-value small{
    font-size:14px;
    font-weight:500;
}

/* =====================================================
   DESTACADOS
===================================================== */

.twa-features{
    display:flex;
    flex-direction:column;
    gap:12px;
    margin-top:10px;
}

.twa-feature{
    display:flex;
    align-items:flex-start;
    gap:12px;
}

.twa-feature img{
    width:24px;
    height:24px;
    object-fit:contain;
    flex-shrink:0;
    margin:0;
}

.twa-feature span{
    font-size:15px;
    line-height:1.4;
}

/* =====================================================
   BOTÓN
===================================================== */

.twa-product-button{
    display:block !important;
    width:100%;
    text-align:center;
    background:#00B5E2 !important;
    color:#FFF !important;
    border:none !important;
    border-radius:12px !important;
    padding:16px !important;
    font-size:16px;
    font-weight:600;
    text-decoration:none;
    transition:.25s;
}

.twa-product-button:hover{
    transform:translateY(-2px);
    opacity:.9;
}

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

@media(max-width:767px){

    .twa-prices{
        grid-template-columns:1fr;
    }

    .twa-price-value{
        font-size:24px;
    }

}


/* =====================================================
   CTA
===================================================== */

.twa-cta-buttons{
    display:flex;
    flex-direction:column;
    gap:12px;
}

.twa-rental-button{
    display:block !important;
    width:100%;
    text-align:center;
    background:#F8FAFC !important;
    color:#111827 !important;
    border:1px solid #D1D5DB !important;
    border-radius:12px !important;
    padding:16px !important;
    text-decoration:none;
    font-weight:600;
}

/* =====================================================
   RESULTADO FINAL
===================================================== */

#twa-advisor.twa-completed .twa-wizard{
    flex:0 0 30%;
}

#twa-advisor.twa-completed .twa-sidebar{
    width:70%;
}

#twa-advisor.twa-completed .twa-sidebar-card{
    position:relative;
    top:auto;
}


#twa-advisor.twa-completed .twa-question{
    display:none;
}

/* =====================================================
   SUMMARY
===================================================== */

.twa-summary-content{
    text-align:center;
    padding:40px 20px;
}

.twa-summary-icon{
    width:70px;
    height:70px;
    border-radius:50%;
    background:#00B5E2;
    color:#FFF;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:32px;
    margin:0 auto 20px;
}

.twa-summary-content h3{
    font-size:28px;
    margin-bottom:15px;
}

.twa-summary-content p{
    opacity:.75;
    margin-bottom:30px;
}