/* =========================================================
   GENERAL
========================================================= */

* {
    box-sizing: border-box;
}

html {
    font-size: 16px;
}

body {
    margin: 0;
    padding: 0;

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    color: #1f2937;

    background: #f4f7fb;
}

.pagina {
    min-height: 100vh;

    padding:
        40px 20px;
}

.contenedor {
    width: 100%;

    max-width: 920px;

    margin:
        0 auto;
}


/* =========================================================
   CABECERA GENERAL
========================================================= */

.cabecera {
    text-align: center;

    margin-bottom: 30px;
}

.titulo-pequeno {
    margin-bottom: 8px;

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 1.8px;

    color: #2563eb;
}

.cabecera h1 {
    margin:
        0 0 12px;

    font-size: 36px;

    color: #172554;
}

.cabecera p {
    max-width: 650px;

    margin:
        0 auto;

    line-height: 1.6;

    color: #64748b;
}


/* =========================================================
   FORMULARIO INICIAL
========================================================= */

.tarjeta {
    padding: 36px;

    background: #ffffff;

    border-radius: 18px;

    box-shadow:
        0 15px 45px
        rgba(15, 23, 42, 0.08);
}

.titulo-seccion {
    padding-bottom: 18px;

    margin-bottom: 28px;

    border-bottom:
        1px solid #e5e7eb;
}

.titulo-seccion h2 {
    margin:
        0 0 5px;

    font-size: 24px;

    color: #172554;
}

.titulo-seccion p {
    margin: 0;

    font-size: 14px;

    color: #64748b;
}

.fila {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 22px;
}

.grupo {
    margin-bottom: 22px;
}

.grupo label {
    display: block;

    margin-bottom: 8px;

    font-weight: 600;

    line-height: 1.4;

    color: #374151;
}

.grupo input,
.grupo select {
    width: 100%;

    min-height: 50px;

    padding:
        0 14px;

    font-family: inherit;

    font-size: 16px;

    color: #1f2937;

    background: #ffffff;

    border:
        1px solid #cbd5e1;

    border-radius: 9px;

    transition:
        border-color .2s,
        box-shadow .2s;
}

.grupo input:focus,
.grupo select:focus {
    outline: none;

    border-color: #2563eb;

    box-shadow:
        0 0 0 3px
        rgba(37, 99, 235, .10);
}

.grupo input[readonly] {
    color: #475569;

    background: #f8fafc;
}

.ayuda {
    display: block;

    margin-top: 6px;

    font-size: 12px;

    color: #64748b;
}

.celular {
    max-width: 400px;
}

.mensaje {
    margin:
        8px 0 27px;

    padding:
        17px 18px;

    border-left:
        4px solid #2563eb;

    border-radius: 8px;

    color: #334155;

    background: #eff6ff;
}

.mensaje p {
    margin:
        5px 0 0;

    line-height: 1.6;
}


/* =========================================================
   BOTÓN GENERAL
========================================================= */

.boton {
    width: 100%;

    min-height: 54px;

    padding:
        14px 20px;

    border: 0;

    border-radius: 11px;

    font-size: 17px;

    font-weight: 700;

    color: #ffffff;

    background: #1d4ed8;

    cursor: pointer;

    transition:
        background .2s,
        transform .1s,
        box-shadow .2s;
}

.boton:hover {
    background: #1e40af;
}

.boton:disabled {
    cursor: not-allowed;

    opacity: .65;
}


/* =========================================================
   TEST
========================================================= */

.pagina-test {
    padding-top: 28px;
}

.test-contenedor {
    max-width: 850px;
}

.test-superior {
    margin-bottom: 22px;
}

.test-superior h1 {
    margin:
        5px 0 8px;

    color: #172554;

    font-size: 30px;
}

.test-superior p {
    margin: 0;

    color: #64748b;

    line-height: 1.6;
}


/* =========================================================
   PROGRESO
========================================================= */

.panel-progreso {
    position: sticky;

    top: 10px;

    z-index: 20;

    padding:
        18px 22px;

    margin-bottom: 20px;

    background:
        rgba(255,255,255,.96);

    border:
        1px solid #e5e7eb;

    border-radius: 14px;

    box-shadow:
        0 8px 25px
        rgba(15,23,42,.07);
}

.progreso-superior {
    display: flex;

    justify-content:
        space-between;

    align-items: center;

    gap: 15px;

    margin-bottom: 12px;
}

.bloque-etiqueta {
    margin-right: 4px;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 1px;

    color: #64748b;
}

.progreso-texto {
    font-size: 14px;

    color: #475569;
}

.barra-progreso {
    height: 9px;

    overflow: hidden;

    background: #e2e8f0;

    border-radius: 30px;
}

.barra-progreso-interna {
    height: 100%;

    background: #2563eb;

    border-radius: 30px;
}

.progreso-general {
    margin-top: 8px;

    text-align: right;

    font-size: 12px;

    color: #64748b;
}


/* =========================================================
   TARJETAS DE PREGUNTAS
========================================================= */

.preguntas-lista {
    display: flex;

    flex-direction: column;

    gap: 18px;
}

.pregunta-amigable {
    padding:
        24px;

    background: #ffffff;

    border:
        2px solid transparent;

    border-radius: 16px;

    box-shadow:
        0 7px 24px
        rgba(15,23,42,.06);

    transition:
        border-color .2s,
        transform .2s,
        box-shadow .2s;
}

.pregunta-amigable.respondida {
    border-color:
        #bfdbfe;
}

.pregunta-amigable.respuesta-reciente {
    transform:
        scale(1.006);
}

.pregunta-cabecera {
    display: flex;

    align-items: center;

    gap: 10px;

    margin-bottom: 14px;
}

.pregunta-numero-circulo {
    display: flex;

    align-items: center;

    justify-content: center;

    min-width: 38px;

    height: 38px;

    padding:
        0 8px;

    border-radius: 50%;

    font-size: 14px;

    font-weight: 800;

    color: #ffffff;

    background: #2563eb;
}

.pregunta-indicador {
    font-size: 12px;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: .7px;

    color: #64748b;
}

.pregunta-texto {
    margin-bottom: 20px;

    font-size: 18px;

    font-weight: 500;

    line-height: 1.55;

    color: #1e293b;
}


/* =========================================================
   RESPUESTAS SÍ / NO
========================================================= */

.respuestas-amigables {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 14px;
}

.respuesta-opcion {
    cursor: pointer;
}

.respuesta-opcion input {
    position: absolute;

    opacity: 0;

    pointer-events: none;
}

.respuesta-contenido {
    display: flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    min-height: 54px;

    padding:
        12px 20px;

    border:
        2px solid #e2e8f0;

    border-radius: 11px;

    font-size: 17px;

    font-weight: 700;

    color: #475569;

    background: #ffffff;

    transition: .2s;
}

.respuesta-icono {
    display: flex;

    align-items: center;

    justify-content: center;

    width: 27px;

    height: 27px;

    border-radius: 50%;

    font-size: 17px;

    background: #f1f5f9;
}


/* SÍ */

.respuesta-si:hover
.respuesta-contenido {
    border-color: #86efac;

    background: #f0fdf4;
}

.respuesta-si input:checked
+ .respuesta-contenido {
    color: #166534;

    border-color: #22c55e;

    background: #dcfce7;
}

.respuesta-si input:checked
+ .respuesta-contenido
.respuesta-icono {
    color: #ffffff;

    background: #22c55e;
}


/* NO */

.respuesta-no:hover
.respuesta-contenido {
    border-color: #fca5a5;

    background: #fef2f2;
}

.respuesta-no input:checked
+ .respuesta-contenido {
    color: #991b1b;

    border-color: #ef4444;

    background: #fee2e2;
}

.respuesta-no input:checked
+ .respuesta-contenido
.respuesta-icono {
    color: #ffffff;

    background: #ef4444;
}


/* =========================================================
   NAVEGACIÓN DEL TEST
========================================================= */

.test-navegacion {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 15px;

    margin-top: 26px;
}

.boton-atras {
    display: flex;

    align-items: center;

    justify-content: center;

    min-height: 54px;

    padding:
        14px 20px;

    text-decoration: none;

    font-size: 16px;

    font-weight: 700;

    color: #475569;

    background: #e2e8f0;

    border-radius: 11px;
}

.boton-atras:hover {
    background: #cbd5e1;
}

.boton-continuar.listo {
    box-shadow:
        0 7px 20px
        rgba(37,99,235,.22);
}


/* =========================================================
   RESULTADO
========================================================= */

.resultado-contenedor {
    max-width: 900px;
}

.resultado-cabecera {
    margin-bottom: 30px;
}

.resultado-resumen {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 20px;

    margin-bottom: 38px;
}

.resultado-destacado {
    padding: 28px;

    text-align: center;

    background: #ffffff;

    border:
        1px solid #e2e8f0;

    border-radius: 18px;

    box-shadow:
        0 12px 35px
        rgba(15,23,42,.07);
}

.resultado-icono {
    display: flex;

    align-items: center;

    justify-content: center;

    width: 52px;

    height: 52px;

    margin:
        0 auto 14px;

    border-radius: 50%;

    font-size: 25px;

    color: #2563eb;

    background: #eff6ff;
}

.resultado-tipo {
    margin-bottom: 10px;

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 1px;

    text-transform: uppercase;

    color: #64748b;
}

.resultado-destacado h2 {
    min-height: 55px;

    margin:
        0 0 10px;

    font-size: 20px;

    line-height: 1.35;

    color: #172554;
}

.resultado-puntaje {
    margin-bottom: 5px;

    font-size: 42px;

    font-weight: 800;

    color: #2563eb;
}

.resultado-fraccion {
    font-size: 13px;

    color: #64748b;
}


/* =========================================================
   INTERPRETACIÓN
========================================================= */

.titulo-interpretacion {
    margin:
        15px 0 20px;
}

.titulo-interpretacion span {
    font-size: 12px;

    font-weight: 800;

    letter-spacing: 1.3px;

    color: #2563eb;

    text-transform: uppercase;
}

.titulo-interpretacion h2 {
    margin:
        6px 0;

    color: #172554;
}

.titulo-interpretacion p {
    margin: 0;

    color: #64748b;

    line-height: 1.6;
}

.interpretacion-area {
    margin-bottom: 22px;

    padding: 30px;

    background: #ffffff;

    border-radius: 18px;

    box-shadow:
        0 10px 32px
        rgba(15,23,42,.07);
}

.interpretacion-cabecera {
    padding-bottom: 18px;

    margin-bottom: 22px;

    border-bottom:
        1px solid #e5e7eb;
}

.interpretacion-etiqueta {
    font-size: 12px;

    font-weight: 800;

    letter-spacing: 1px;

    text-transform: uppercase;

    color: #2563eb;
}

.interpretacion-cabecera h2 {
    margin:
        6px 0 0;

    font-size: 25px;

    color: #172554;
}

.interpretacion-grid {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 20px;
}

.interpretacion-bloque {
    padding: 18px;

    background: #f8fafc;

    border-radius: 12px;
}

.interpretacion-titulo {
    margin-bottom: 8px;

    font-weight: 800;

    color: #172554;
}

.interpretacion-bloque p,
.carreras-bloque p {
    margin: 0;

    line-height: 1.7;

    color: #475569;
}

.carreras-bloque {
    margin-top: 20px;

    padding: 20px;

    border-radius: 12px;

    background: #eff6ff;
}

.mensaje-resultado {
    padding: 20px;

    margin-top: 25px;

    border-left:
        4px solid #2563eb;

    border-radius: 10px;

    background: #eff6ff;

    color: #334155;
}

.mensaje-resultado p {
    margin:
        6px 0 0;

    line-height: 1.7;
}


/* =========================================================
   CELULAR
========================================================= */

@media (max-width: 700px) {

    .pagina {
        padding:
            18px 12px;
    }

    .cabecera h1 {
        font-size: 27px;
    }

    .tarjeta {
        padding:
            22px 17px;
    }

    .fila {
        grid-template-columns:
            1fr;

        gap: 0;
    }

    .celular {
        max-width: none;
    }


    /* TEST */

    .test-superior h1 {
        font-size: 25px;
    }

    .panel-progreso {
        top: 5px;

        padding:
            14px 15px;
    }

    .pregunta-amigable {
        padding:
            20px 16px;
    }

    .pregunta-texto {
        font-size: 17px;
    }

    .respuestas-amigables {
        gap: 9px;
    }

    .respuesta-contenido {
        min-height: 52px;

        padding:
            10px;
    }

    .test-navegacion {
        grid-template-columns:
            1fr;
    }


    /* RESULTADO */

    .resultado-resumen {
        grid-template-columns:
            1fr;
    }

    .interpretacion-grid {
        grid-template-columns:
            1fr;
    }

    .interpretacion-area {
        padding:
            22px 17px;
    }

}


/* =========================================================
   NUEVO RESULTADO VISUAL CHASIDE
========================================================= */

.resultado-nuevo {
    background:
        linear-gradient(
            180deg,
            #eef4ff 0px,
            #f7f9fc 350px,
            #f4f7fb 100%
        );
}

.resultado-contenedor {
    max-width: 950px;
}


/* =========================================================
   HERO
========================================================= */

.resultado-hero {
    max-width: 760px;

    margin:
        0 auto 35px;

    text-align: center;
}

.resultado-hero-icono {
    display: flex;

    align-items: center;

    justify-content: center;

    width: 62px;
    height: 62px;

    margin:
        0 auto 15px;

    border-radius: 50%;

    font-size: 29px;
    font-weight: 800;

    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            #2563eb,
            #4f46e5
        );

    box-shadow:
        0 12px 30px
        rgba(37,99,235,.25);
}

.resultado-finalizado {
    margin-bottom: 8px;

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 1.6px;

    color: #2563eb;
}

.resultado-hero h1 {
    margin:
        0 0 12px;

    font-size: 38px;

    line-height: 1.15;

    color: #172554;
}

.resultado-hero p {
    max-width: 650px;

    margin:
        0 auto;

    line-height: 1.7;

    color: #64748b;
}

.resultado-fecha {
    display: inline-block;

    margin-top: 14px;

    padding:
        7px 13px;

    border-radius: 30px;

    font-size: 12px;

    color: #475569;

    background: rgba(255,255,255,.8);

    border:
        1px solid #dbe4f0;
}


/* =========================================================
   TARJETAS PRINCIPALES
========================================================= */

.resultados-principales {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 22px;

    margin-bottom: 50px;
}

.resultado-card {
    position: relative;

    overflow: hidden;

    min-height: 270px;

    padding: 28px;

    background: #ffffff;

    border:
        1px solid #e5eaf2;

    border-radius: 20px;

    box-shadow:
        0 12px 35px
        rgba(15,23,42,.07);
}

.resultado-card::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 5px;
}

.resultado-card-interes::before {
    background:
        linear-gradient(
            90deg,
            #2563eb,
            #60a5fa
        );
}

.resultado-card-aptitud::before {
    background:
        linear-gradient(
            90deg,
            #7c3aed,
            #a78bfa
        );
}

.resultado-card-superior {
    display: flex;

    justify-content:
        space-between;

    align-items:
        flex-start;

    gap: 20px;
}

.resultado-card-tipo {
    margin-bottom: 7px;

    font-size: 13px;

    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: .8px;

    color: #334155;
}

.resultado-card-ayuda {
    max-width: 260px;

    font-size: 13px;

    line-height: 1.5;

    color: #94a3b8;
}


/* =========================================================
   CÍRCULO DE PORCENTAJE
========================================================= */

.resultado-circulo {
    position: relative;

    display: flex;

    flex-shrink: 0;

    align-items: center;

    justify-content: center;

    width: 105px;
    height: 105px;

    border-radius: 50%;

    background:
        conic-gradient(
            var(--color-progreso)
            calc(var(--porcentaje) * 1%),

            #e8edf5
            0
        );
}

.resultado-circulo::before {
    content: "";

    position: absolute;

    width: 82px;
    height: 82px;

    border-radius: 50%;

    background: #ffffff;
}

.resultado-circulo-centro {
    position: relative;

    z-index: 1;

    text-align: center;
}

.resultado-circulo-centro strong {
    display: block;

    font-size: 23px;

    line-height: 1;

    color: #172554;
}

.resultado-circulo-centro span {
    display: block;

    margin-top: 5px;

    font-size: 10px;

    text-transform: uppercase;

    letter-spacing: .7px;

    color: #94a3b8;
}


/* =========================================================
   NOMBRE DEL ÁREA
========================================================= */

.resultado-areas-nombres {
    margin-top: 25px;
}

.resultado-nombre-area {
    margin-bottom: 7px;

    font-size: 23px;

    font-weight: 800;

    line-height: 1.25;

    color: #172554;
}

.resultado-respuestas {
    margin-top: 14px;

    font-size: 13px;

    color: #64748b;
}

.resultado-respuestas strong {
    color: #2563eb;
}

.resultado-empate {
    margin-top: 14px;

    padding:
        9px 12px;

    border-radius: 9px;

    font-size: 13px;

    color: #92400e;

    background: #fffbeb;
}


/* =========================================================
   TÍTULO INTERPRETACIÓN
========================================================= */

.interpretacion-presentacion {
    margin-bottom: 22px;

    text-align: center;
}

.interpretacion-mini {
    font-size: 11px;

    font-weight: 800;

    letter-spacing: 1.5px;

    color: #2563eb;
}

.interpretacion-presentacion h2 {
    margin:
        7px 0 8px;

    font-size: 30px;

    color: #172554;
}

.interpretacion-presentacion p {
    max-width: 600px;

    margin:
        0 auto;

    color: #64748b;

    line-height: 1.6;
}


/* =========================================================
   PERFIL
========================================================= */

.perfil-vocacional-card {
    margin-bottom: 25px;

    padding: 32px;

    border:
        1px solid #e5eaf2;

    border-radius: 20px;

    background: #ffffff;

    box-shadow:
        0 12px 36px
        rgba(15,23,42,.065);
}

.perfil-vocacional-header {
    display: flex;

    justify-content:
        space-between;

    align-items:
        flex-start;

    gap: 25px;

    padding-bottom: 23px;

    margin-bottom: 25px;

    border-bottom:
        1px solid #edf0f5;
}

.perfil-etiquetas {
    display: flex;

    flex-wrap: wrap;

    gap: 7px;

    margin-bottom: 10px;
}

.badge {
    display: inline-flex;

    align-items: center;

    min-height: 27px;

    padding:
        4px 10px;

    border-radius: 30px;

    font-size: 11px;

    font-weight: 800;
}

.badge-interes {
    color: #1d4ed8;

    background: #dbeafe;
}

.badge-aptitud {
    color: #6d28d9;

    background: #ede9fe;
}

.badge-coincidencia {
    color: #047857;

    background: #d1fae5;
}

.perfil-vocacional-header h2 {
    margin:
        0 0 7px;

    font-size: 28px;

    line-height: 1.25;

    color: #172554;
}

.perfil-introduccion {
    margin: 0;

    color: #64748b;

    line-height: 1.6;
}

.perfil-icono {
    display: flex;

    flex-shrink: 0;

    align-items: center;

    justify-content: center;

    width: 60px;
    height: 60px;

    border-radius: 16px;

    font-size: 27px;

    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            #2563eb,
            #7c3aed
        );

    box-shadow:
        0 10px 25px
        rgba(79,70,229,.20);
}


/* =========================================================
   INTERESES / APTITUDES
========================================================= */

.perfil-dos-columnas {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 20px;
}

.perfil-bloque {
    padding: 20px;

    border-radius: 15px;

    background: #f8fafc;

    border:
        1px solid #eef2f7;
}

.perfil-bloque-cabecera {
    display: flex;

    align-items: center;

    gap: 11px;

    margin-bottom: 16px;
}

.perfil-icono-pequeno {
    display: flex;

    align-items: center;

    justify-content: center;

    width: 40px;
    height: 40px;

    border-radius: 11px;

    font-size: 18px;
}

.perfil-icono-pequeno.interes {
    color: #2563eb;

    background: #dbeafe;
}

.perfil-icono-pequeno.aptitud {
    color: #7c3aed;

    background: #ede9fe;
}

.perfil-bloque-cabecera span {
    display: block;

    margin-bottom: 2px;

    font-size: 10px;

    text-transform: uppercase;

    letter-spacing: 1px;

    color: #94a3b8;
}

.perfil-bloque-cabecera h3 {
    margin: 0;

    font-size: 18px;

    color: #172554;
}


/* =========================================================
   TAGS
========================================================= */

.tags {
    display: flex;

    flex-wrap: wrap;

    gap: 8px;
}

.tag {
    display: inline-flex;

    padding:
        7px 10px;

    border-radius: 8px;

    font-size: 12px;

    line-height: 1.3;

    border:
        1px solid transparent;
}

.tag-interes {
    color: #1e40af;

    background: #eff6ff;

    border-color: #dbeafe;
}

.tag-aptitud {
    color: #6d28d9;

    background: #f5f3ff;

    border-color: #ede9fe;
}


/* =========================================================
   CARRERAS
========================================================= */

.carreras-recomendadas {
    margin-top: 22px;

    padding: 23px;

    border-radius: 16px;

    background:
        linear-gradient(
            135deg,
            #eff6ff,
            #f5f3ff
        );

    border:
        1px solid #dbeafe;
}

.carreras-cabecera {
    display: flex;

    align-items: center;

    gap: 12px;

    margin-bottom: 17px;
}

.carreras-icono {
    display: flex;

    align-items: center;

    justify-content: center;

    width: 42px;
    height: 42px;

    border-radius: 11px;

    font-size: 18px;

    font-weight: 800;

    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            #2563eb,
            #7c3aed
        );
}

.carreras-cabecera span {
    display: block;

    margin-bottom: 2px;

    font-size: 10px;

    text-transform: uppercase;

    letter-spacing: 1px;

    color: #64748b;
}

.carreras-cabecera h3 {
    margin: 0;

    color: #172554;
}

.lista-carreras {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap:
        9px 16px;
}

.carrera-item {
    display: flex;

    align-items:
        flex-start;

    gap: 8px;

    padding:
        8px 10px;

    border-radius: 9px;

    font-size: 13px;

    line-height: 1.45;

    color: #334155;

    background:
        rgba(255,255,255,.72);
}

.carrera-punto {
    display: flex;

    align-items: center;

    justify-content: center;

    flex-shrink: 0;

    width: 20px;
    height: 20px;

    margin-top: 1px;

    border-radius: 50%;

    font-size: 10px;

    font-weight: bold;

    color: #ffffff;

    background: #2563eb;
}


/* =========================================================
   CARRERA DECLARADA
========================================================= */

.carrera-declarada {
    display: flex;

    align-items: center;

    gap: 15px;

    margin:
        30px 0 20px;

    padding: 20px;

    border:
        1px solid #e2e8f0;

    border-radius: 15px;

    background: #ffffff;
}

.carrera-declarada-icono {
    display: flex;

    align-items: center;

    justify-content: center;

    flex-shrink: 0;

    width: 46px;
    height: 46px;

    border-radius: 12px;

    font-size: 22px;

    color: #2563eb;

    background: #eff6ff;
}

.carrera-declarada span {
    display: block;

    margin-bottom: 4px;

    font-size: 11px;

    text-transform: uppercase;

    letter-spacing: .7px;

    color: #94a3b8;
}

.carrera-declarada strong {
    font-size: 16px;

    color: #172554;
}


/* =========================================================
   MENSAJE FINAL
========================================================= */

.resultado-recomendacion {
    display: flex;

    gap: 15px;

    padding: 22px;

    border-radius: 15px;

    border:
        1px solid #dbeafe;

    background: #eff6ff;
}

.resultado-recomendacion-icono {
    display: flex;

    align-items: center;

    justify-content: center;

    flex-shrink: 0;

    width: 34px;
    height: 34px;

    border-radius: 50%;

    font-family: Georgia, serif;

    font-weight: bold;

    color: #ffffff;

    background: #2563eb;
}

.resultado-recomendacion strong {
    color: #172554;
}

.resultado-recomendacion p {
    margin:
        5px 0 0;

    font-size: 13px;

    line-height: 1.65;

    color: #475569;
}


/* =========================================================
   RESPONSIVE RESULTADOS
========================================================= */

@media (max-width: 760px) {

    .resultado-hero h1 {
        font-size: 29px;
    }

    .resultados-principales {
        grid-template-columns: 1fr;
    }

    .resultado-card {
        min-height: auto;

        padding: 22px;
    }

    .resultado-card-superior {
        align-items: center;
    }

    .resultado-circulo {
        width: 90px;
        height: 90px;
    }

    .resultado-circulo::before {
        width: 69px;
        height: 69px;
    }

    .resultado-circulo-centro strong {
        font-size: 20px;
    }

    .resultado-nombre-area {
        font-size: 21px;
    }

    .perfil-vocacional-card {
        padding: 22px 17px;
    }

    .perfil-vocacional-header h2 {
        font-size: 23px;
    }

    .perfil-icono {
        width: 48px;
        height: 48px;

        font-size: 21px;
    }

    .perfil-dos-columnas {
        grid-template-columns: 1fr;
    }

    .lista-carreras {
        grid-template-columns: 1fr;
    }

}


@media (max-width: 480px) {

    .resultado-card-superior {
        align-items:
            flex-start;
    }

    .resultado-card-ayuda {
        font-size: 12px;
    }

    .resultado-circulo {
        width: 82px;
        height: 82px;
    }

    .resultado-circulo::before {
        width: 63px;
        height: 63px;
    }

    .resultado-circulo-centro strong {
        font-size: 18px;
    }

    .resultado-circulo-centro span {
        font-size: 8px;
    }

    .perfil-vocacional-header {
        gap: 10px;
    }

}