:root{

    --expo:#0A4E8A;
    --festi:#7C1F78;
    --verde:#00A859;
    --amarillo:#F4B400;
    --rojo:#D62828;
    --gris:#F5F7FA;
    --gris2:#E5E7EB;
    --texto:#2C3E50;
    --blanco:#FFFFFF;
    --sombra:0 12px 35px rgba(0,0,0,.08);
    --radio:18px;

}


*{

    margin:0;
    padding:0;
    box-sizing:border-box;

}

html{

    scroll-behavior:smooth;

}

body{

    font-family:"Segoe UI",sans-serif;

    background:linear-gradient(
        180deg,
        #F8FAFC,
        #EEF3F8
    );

    color:var(--texto);

}

/* LINKS */

a{

    text-decoration:none;

}

img{

    max-width:100%;

}

/*=====================================================
BANNER
======================================================*/

.bannerSuperior{

    width:100%;
    background:#F8FAFC;
    display:flex;
    justify-content:center;
    padding:0;

}

.bannerSuperior img{

    width:100%;
    max-width:1200px;   /* Puedes probar 1500 o 1700 */
    height:auto;
    display:block;

}

/*=====================================================
HEADER
======================================================*/

header{

    padding:30px 20px 15px;

    text-align:center;


}

.headerContenido{

    max-width:950px;

    margin:auto;

}

.headerContenido h1{

    color:var(--expo);

    font-size:42px;

    font-weight:800;

    margin-bottom:10px;

    letter-spacing:.5px;

}

.headerContenido p{

    color:var(--festi);

    font-size:20px;

    margin-bottom:0;

}

/*=====================================================
SEPARADOR
======================================================*/

.lineaHeader{

    width:130px;

    height:4px;

    border-radius:30px;

    margin:28px auto;

    background:linear-gradient(
        90deg,
        var(--expo),
        var(--festi)
    );

}



/*=====================================================
CONTENEDOR
======================================================*/

.contenedor{

    max-width:950px;
    margin:10px auto 40px;
    padding:0 20px;

}

.card{

    background:white;
    border-radius:22px;
    padding:50px;
    box-shadow:var(--sombra);

}

/*=====================================================
TIPOGRAFÍA
======================================================*/

h1{

    color:var(--expo);
    margin-bottom:15px;

}

h2{

    color:var(--expo);
    margin-bottom:18px;

}

h3{

    color:var(--festi);
    margin-bottom:15px;

}

p{

    line-height:1.7;

}

hr{

    margin:35px 0;
    border:none;
    border-top:1px solid #EEE;

}

/*=====================================================
FORMULARIOS
======================================================*/

label{

    display:block;
    margin-top:22px;
    margin-bottom:8px;
    font-weight:600;
    color:var(--expo);

}

input{

    width:100%;
    padding:15px 18px;
    border:2px solid var(--gris2);
    border-radius:12px;
    font-size:15px;
    transition:.25s;
    background:white;

}

input:focus{

    outline:none;
    border-color:var(--expo);
    box-shadow:0 0 15px rgba(10,78,138,.18);

}

/*=====================================================
BOTONES
======================================================*/

button{

    margin-top:30px;
    padding:16px 35px;
    border:none;
    border-radius:12px;
    cursor:pointer;
    color:white;
    font-size:16px;
    font-weight:600;
    letter-spacing:.3px;

    background:linear-gradient(
        90deg,
        var(--expo),
        var(--festi)
    );

    transition:.25s;

}

button:hover{

    transform:translateY(-2px);
    box-shadow:0 12px 25px rgba(0,0,0,.15);

}

button:disabled{

    background:#C7C7C7;
    cursor:not-allowed;
    box-shadow:none;
    transform:none;

}

/*=====================================================
PROGRESO
======================================================*/

.progreso{

    width:100%;
    height:12px;
    background:#E5E7EB;
    border-radius:20px;
    overflow:hidden;
    margin:30px 0;

}

.barra{

    height:12px;
    width:0%;

    background:linear-gradient(

        90deg,
        var(--amarillo),
        var(--festi)

    );

    transition:.45s;

}

/*=====================================================
MENSAJES
======================================================*/

.alerta{

    background:#FFF8E6;
    border-left:5px solid var(--amarillo);
    padding:18px;
    border-radius:10px;
    margin-top:25px;

}

.success{

    background:#EDF9F2;
    border-left:5px solid var(--verde);
    padding:18px;
    border-radius:10px;
    margin-top:25px;

}

/*=====================================================
ANIMACIONES
======================================================*/

@keyframes fade{

    from{

        opacity:0;
        transform:translateY(15px);

    }

    to{

        opacity:1;
        transform:translateY(0);

    }

}

/*=====================================================
LANDING
======================================================*/

.landing{

    animation:fade .4s;

}

.landingIcono{

    width:110px;
    height:110px;
    border-radius:50%;

    background:linear-gradient(

        135deg,

        var(--expo),

        var(--festi)

    );

    color:white;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:52px;
    margin:0 auto 30px;

}

.landing h1{

    text-align:center;
    margin-bottom:15px;

}

.landingTexto{

    text-align:center;
    max-width:650px;
    margin:auto;
    color:#666;
    font-size:18px;
    line-height:1.7;

}

.beneficios{

    display:flex;
    gap:20px;
    margin-top:45px;
    margin-bottom:10px;

}

.beneficio{

    flex:1;
    background:white;
    border:1px solid #E5E7EB;
    border-radius:16px;
    padding:25px;
    display:flex;
    gap:18px;
    align-items:center;
    transition:.25s;

}

.beneficio:hover{

    transform:translateY(-4px);
    box-shadow:0 12px 30px rgba(0,0,0,.08);

}

.icono{

    width:55px;
    height:55px;
    border-radius:50%;
    background:#F5F7FA;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:24px;

}

/*=====================================================
RESPUESTAS
======================================================*/

.respuesta{

    display:flex;
    align-items:center;
    gap:20px;

}

.respuestaIcono{

    width:52px;
    height:52px;
    border-radius:50%;
    background:#F5F7FA;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:28px;

}

.respuestaTexto{

    flex:1;

}

.respuestaTitulo{

    font-size:24px;
    font-weight:700;
    color:var(--expo);

}

.respuestaDescripcion{

    color:#666;
    margin-top:4px;
    font-size:14px;

}

.opcion:hover .respuestaIcono{

    background:linear-gradient(
        135deg,
        var(--expo),
        var(--festi)
    );

    color:white;

}

.seleccionada .respuestaIcono{

    background:linear-gradient(
        135deg,
        var(--expo),
        var(--festi)
    );

    color:white;

}

/*=====================================================
PREGUNTAS
======================================================*/

.preguntaNumero{

    font-size:22px;
    font-weight:500;
    color:#4B5563;
    margin-bottom:10px;

}

.dimension{

    font-size:22px;
    font-weight:700;
    color:var(--expo);
    margin-bottom:12px;

}

.enunciado{

    font-size:36px;
    font-weight:700;
    line-height:1.35;
    color:var(--texto);
    margin-bottom:40px;

}

.opcion{

    background:white;
    border:2px solid #E5E7EB;
    border-radius:18px;
    padding:20px;
    margin-bottom:18px;
    cursor:pointer;
    transition:.25s;

}

.opcion:hover{

    border-color:var(--expo);
    transform:translateX(6px);

}

.seleccionada{

    border-color:var(--expo);
    background:#F8FBFF;

}

.navegacion{

    margin-top:40px;

}

/*=====================================================
RESULTADO
======================================================*/

.resultadoHeader{

    text-align:center;

}

.resultadoIcono{

    width:90px;
    height:90px;
    margin:auto;
    border-radius:50%;
    background:#00A859;
    color:white;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:45px;

}

.nivel{

    text-align:center;
    font-size:24px;
    font-weight:bold;
    color:var(--festi);
    margin-top:20px;

}

.resumenResultado{

    text-align:center;
    max-width:700px;
    margin:25px auto;
    line-height:1.8;

}

/* DASHBOARD */

.tarjetaDashboard{

    margin-top:25px;
    background:#FAFBFC;
    border-radius:14px;
    padding:22px;
    border:1px solid #E5E7EB;

}

.dashboardCabecera{

    display:flex;
    justify-content:space-between;
    margin-bottom:15px;

}

.dashboardBarra{

    height:16px;
    background:#E5E7EB;
    border-radius:30px;
    overflow:hidden;

}

.dashboardValor{

    height:16px;
    border-radius:30px;
    transition:.5s;

}

.dashboardNumero{

    text-align:right;
    margin-top:10px;
    font-weight:bold;
    color:var(--expo);

}

.mensajeFinal{

    background:#EDF8F2;
    border-left:5px solid #00A859;
    border-radius:12px;
    padding:20px;
    margin:25px 0;
    line-height:1.7;

}

/*=====================================================
TRANSICIONES
======================================================*/

.fade{

    animation:fadeIn .35s ease;

}

@keyframes fadeIn{

    from{

        opacity:0;

        transform:translateY(15px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}

/*=====================================================
EFECTOS CARD
======================================================*/

.card{

    transition:.35s;

}

.card:hover{

    box-shadow:

        0 25px 60px rgba(0,0,0,.12);

}

/*=====================================================
ANIMACIÓN BOTONES
======================================================*/

button{

    position:relative;

    overflow:hidden;

}

button::after{

    content:"";

    position:absolute;

    top:0;

    left:-120%;

    width:100%;

    height:100%;

    background:rgba(255,255,255,.18);

    transition:.5s;

}

button:hover::after{

    left:120%;

}

/*=====================================================
INPUTS
======================================================*/

input{

    transition:.25s;

}

input:hover{

    border-color:var(--festi);

}

/*=====================================================
TARJETAS
======================================================*/

.tarjetaDashboard{

    transition:.25s;

}

.tarjetaDashboard:hover{

    transform:translateY(-3px);
    box-shadow:0 12px 30px rgba(0,0,0,.08);

}

/*=====================================================
SCROLL
======================================================*/

::-webkit-scrollbar{

    width:8px;

}

::-webkit-scrollbar-thumb{

    background:#C6C6C6;
    border-radius:20px;

}

::-webkit-scrollbar-thumb:hover{

    background:var(--expo);

}

/*=====================================================
CONSENTIMIENTO
======================================================*/

.consentimiento{

    margin-top:30px;
    padding:20px;
    background:#F8FAFC;
    border:1px solid #E5E7EB;
    border-radius:12px;

}

.checkLabel{

    display:flex;
    align-items:flex-start;
    gap:12px;
    font-size:14px;
    line-height:1.6;
    color:#555;
    cursor:pointer;

}

.checkLabel input{

    width:20px;
    height:20px;
    margin-top:3px;
    flex-shrink:0;

}

/*=====================================================
FOOTER
======================================================*/

.footer{

    text-align:center;

    max-width:950px;

    margin:60px auto 40px;

    padding:35px 20px;

    border-top:1px solid #DCE3EA;

    line-height:1.8;

}

.footer strong{

    color:var(--expo);

}

.footer a{

    color:var(--expo);

    font-weight:600;

}

.footer a:hover{

    text-decoration:underline;

}

select{

    width:100%;
    padding:15px 18px;
    border:2px solid var(--gris2);
    border-radius:12px;
    font-size:15px;
    background:white;
    transition:.25s;
    cursor:pointer;

}

select:focus{

    outline:none;
    border-color:var(--expo);
    box-shadow:0 0 15px rgba(10,78,138,.18);

}

.footerAviso{

    background:#FFF8E6;
    border-left:5px solid var(--amarillo);
    padding:18px;
    border-radius:12px;
    margin-bottom:30px;
    text-align:left;
    line-height:1.8;
    color:#444;
    font-size:15px;

}

.footerAviso strong{

    color:#000;

}

.circulo{

    width:170px;
    height:170px;

    margin:35px auto;

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    background:linear-gradient(
        135deg,
        var(--expo),
        var(--festi)
    );

    color:white;

    font-size:48px;
    font-weight:800;

    box-shadow:0 18px 45px rgba(0,0,0,.18);

}

.ctaFinal{

    margin-top:50px;
    padding:35px;

    background:#F8FAFC;

    border:1px solid #E5E7EB;

    border-radius:18px;

    text-align:left;

    line-height:1.8;

}

.ctaFinal h2{

    color:var(--expo);

    margin-bottom:20px;

}

.ctaFinal h3{

    margin-top:30px;

    color:#111827;

}

.tituloCharla{

    font-size:22px;

    font-weight:700;

    color:var(--festi);

    margin:15px 0;

}

.evento{

    margin:25px 0;

    font-size:18px;

    background:#EEF6FF;

    padding:15px 20px;

    border-radius:10px;

    display:inline-block;

}

/*=========================================
INVITACIÓN FINAL
=========================================*/

.ctaFinal{

    margin-top:45px;

    padding:35px;

    background:#F8FAFC;

    border:1px solid #E5E7EB;

    border-radius:18px;

    line-height:1.8;

}

.ctaFinal h2{

    color:#0A4E8A;

    margin-bottom:20px;

}

.ctaFinal h3{

    margin-top:30px;

    color:#222;

}

.tituloCharla{

    color:#7A1F8A;

    font-size:26px;

    font-weight:700;

    margin:20px 0;

}

.evento{

    margin:25px 0;

    background:#EEF5FF;

    padding:18px;

    border-radius:10px;

    font-size:18px;

    display:inline-block;

}
