/* =========================================
   MENTOR EXPERIENCE LAB
   Pantalla de bienvenida
========================================= */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html,
body {
    width: 100%;
    min-height: 100%;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    color: #123847;
    background: #f7f9f7;
}


/* CONTENEDOR PRINCIPAL */

.welcome {
    position: relative;
    min-height: 100vh;
    padding: 32px 6%;
    overflow: hidden;

    background:
        radial-gradient(
            circle at 82% 22%,
            rgba(237, 128, 62, 0.10),
            transparent 22%
        ),
        radial-gradient(
            circle at 75% 75%,
            rgba(13, 96, 136, 0.07),
            transparent 24%
        ),
        #f8faf8;
}


/* ENCABEZADO */

.topbar {
    position: relative;
    z-index: 10;

    display: flex;
    justify-content: space-between;
    align-items: center;

    padding-bottom: 22px;
    border-bottom: 1px solid rgba(18, 56, 71, 0.14);
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;

    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.brand-name {
    color: #0D6088;
}

.brand-divider {
    color: #ED803E;
}

.brand-lab {
    color: #123847;
}

.experience-number {
    color: #73868d;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.4px;
}


/* HERO */

.hero {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;

    width: 100%;
    max-width: 1500px;

    min-height: calc(100vh - 180px);
    margin: 0 auto;
}


/* CONTENIDO IZQUIERDO */

.hero-content {
    position: relative;
    z-index: 5;
    max-width: 780px;
    padding: 60px 0;
}

.eyebrow {
    margin-bottom: 22px;

    color: #0D6088;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.2px;
}

h1 {
    margin-bottom: 28px;

    color: #123847;
    font-size: clamp(52px, 5.3vw, 88px);
    font-weight: 700;
    line-height: 0.96;
    letter-spacing: -4px;
}

/* Palabra destacada */

h1 span {
    color: #ED803E;
    font-family: Georgia, "Times New Roman", serif;
    font-style: italic;
    font-weight: 400;
    letter-spacing: -3px;
}


/* TEXTO INTRODUCTORIO */

.intro {
    max-width: 620px;
    margin-bottom: 26px;

    color: #536b75;
    font-size: 18px;
    line-height: 1.6;
}


/* DIMENSIONES */

.dimensions {
    margin-bottom: 34px;

    color: #0D6088;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.8;
}

.dimensions i {
    margin: 0 7px;
    color: #ED803E;
    font-style: normal;
}


/* BOTÓN */

.primary-button {
    display: inline-flex;
    align-items: center;
    gap: 32px;

    padding: 17px 19px 17px 24px;

    border: none;
    border-radius: 100px;

    background: #0D6088;
    color: #ffffff;

    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.7px;

    cursor: pointer;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease;
}

.primary-button span {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 34px;
    height: 34px;

    border-radius: 50%;

    background: #ED803E;
    color: white;

    font-size: 18px;

    transition: transform 0.25s ease;
}

.primary-button:hover {
    transform: translateY(-3px);

    background: #0a5275;

    box-shadow:
        0 14px 30px rgba(13, 96, 136, 0.18);
}

.primary-button:hover span {
    transform: translateX(3px);
}


/* =========================================
   COMPOSICIÓN VISUAL DERECHA
========================================= */

.hero-visual {
    position: relative;

    width: 100%;
    height: 590px;
}


/* CÍRCULOS DECORATIVOS */

.visual-circle {
    position: absolute;
    border-radius: 50%;
}

.circle-blue {
    top: 65px;
    right: 80px;

    width: 300px;
    height: 300px;

    border: 1px solid rgba(13, 96, 136, 0.18);

    background:
        radial-gradient(
            circle at 35% 35%,
            rgba(255,255,255,0.95),
            rgba(13,96,136,0.09)
        );
}

.circle-orange {
    bottom: 75px;
    left: 80px;

    width: 150px;
    height: 150px;

    background: #ED803E;

    opacity: 0.12;
}


/* TARJETAS FLOTANTES */

.floating-card {
    position: absolute;

    background: rgba(255, 255, 255, 0.88);

    border: 1px solid rgba(13, 96, 136, 0.18);
    border-radius: 24px;

    box-shadow:
        0 18px 60px rgba(18, 56, 71, 0.08);

    backdrop-filter: blur(10px);
}


/* TARJETA DURACIÓN */

.card-time {
    top: 30px;
    left: 40px;

    width: 180px;
    padding: 22px;

    transform: rotate(-4deg);
}

.card-label {
    display: block;
    margin-bottom: 10px;

    color: #7b8c93;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.card-time strong {
    color: #123847;
    font-size: 28px;
}


/* TARJETA PRINCIPAL */

.card-action {
    top: 170px;
    right: 20px;

    width: 320px;
    min-height: 190px;

    padding: 30px;

    transform: rotate(3deg);
}

.card-action strong {
    display: block;

    color: #123847;
    font-size: 30px;
    line-height: 1.08;
    letter-spacing: -1.2px;
}

.card-arrow {
    position: absolute;
    right: 24px;
    bottom: 22px;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 42px;
    height: 42px;

    border-radius: 50%;

    background: #ED803E;
    color: #ffffff;

    font-size: 20px;
}


/* TARJETA 5 DIMENSIONES */

.card-dimensions {
    left: 130px;
    bottom: 55px;

    display: flex;
    align-items: center;
    gap: 15px;

    padding: 20px 25px;

    transform: rotate(-2deg);
}

.card-dimensions strong {
    color: #0D6088;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 50px;
    font-style: italic;
    font-weight: 400;
    line-height: 1;
}

.card-dimensions span {
    color: #526972;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.3;
}


/* PEQUEÑOS MOVIMIENTOS */

.card-time {
    animation: floatOne 6s ease-in-out infinite;
}

.card-action {
    animation: floatTwo 7s ease-in-out infinite;
}

.card-dimensions {
    animation: floatThree 8s ease-in-out infinite;
}

@keyframes floatOne {

    0%, 100% {
        transform: translateY(0) rotate(-4deg);
    }

    50% {
        transform: translateY(-10px) rotate(-4deg);
    }
}

@keyframes floatTwo {

    0%, 100% {
        transform: translateY(0) rotate(3deg);
    }

    50% {
        transform: translateY(12px) rotate(3deg);
    }
}

@keyframes floatThree {

    0%, 100% {
        transform: translateY(0) rotate(-2deg);
    }

    50% {
        transform: translateY(-8px) rotate(-2deg);
    }
}


/* =========================================
   FOOTER
========================================= */

.welcome-footer {
    position: relative;
    z-index: 10;

    display: flex;
    justify-content: space-between;
    align-items: flex-end;

    padding-top: 18px;

    border-top: 1px solid rgba(18, 56, 71, 0.12);
}

.welcome-footer p {
    max-width: 560px;

    color: #819096;
    font-size: 11px;
    line-height: 1.5;
}

.welcome-footer > span {
    color: #9ba8ad;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.3px;
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 1000px) {

    .hero {
        grid-template-columns: 1fr;
    }

    .hero-content {
        padding-bottom: 20px;
    }

    .hero-visual {
        height: 420px;
        max-width: 650px;
        margin: 0 auto;
    }

    h1 {
        font-size: clamp(50px, 9vw, 76px);
    }
}


@media (max-width: 650px) {

    .welcome {
        padding: 24px;
    }

    .experience-number {
        display: none;
    }

    .brand {
        font-size: 11px;
    }

    .hero-content {
        padding-top: 50px;
    }

    h1 {
        font-size: 48px;
        letter-spacing: -2.5px;
    }

    h1 span {
        letter-spacing: -2px;
    }

    .intro {
        font-size: 16px;
    }

    .dimensions {
        max-width: 380px;
    }

    .hero-visual {
        height: 380px;
    }

    .circle-blue {
        width: 230px;
        height: 230px;
        right: 10px;
    }

    .card-time {
        left: 0;
    }

    .card-action {
        width: 270px;
        right: 0;
    }

    .card-dimensions {
        left: 20px;
    }

    .welcome-footer {
        gap: 20px;
    }

    .welcome-footer > span {
        display: none;
    }
}
/* =========================================
   AJUSTES FINALES DESKTOP
========================================= */

@media (min-width: 1200px) {

    .welcome {
        height: 100vh;
        min-height: 720px;
        padding-top: 28px;
        padding-bottom: 22px;
    }

    .hero {
        min-height: 0;
        height: calc(100vh - 145px);
    }

    .hero-content {
        padding: 35px 0;
    }

    h1 {
        font-size: clamp(58px, 4.7vw, 80px);
    }

    .hero-visual {
        height: 520px;
    }

    .circle-blue {
        width: 270px;
        height: 270px;
    }

    .card-action {
        top: 150px;
    }

    .card-dimensions {
        bottom: 35px;
    }

    .welcome-footer {
        padding-top: 14px;
    }
}
/* =========================================
   PANTALLA 02 — CONTEXTO
========================================= */

.context-screen {
    display: none;
    min-height: 100vh;
    padding: 32px 6%;
    background:
        radial-gradient(
            circle at 12% 80%,
            rgba(237, 128, 62, 0.08),
            transparent 24%
        ),
        #f8faf8;
    color: #123847;
}


/* ENCABEZADO */

.experience-header {
    display: flex;
    justify-content: space-between;
    align-items: center;

    padding-bottom: 22px;
    border-bottom: 1px solid rgba(18, 56, 71, 0.14);
}

.step-indicator {
    color: #73868d;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.4px;
}


/* CONTENIDO */

.context-content {
    display: grid;
    grid-template-columns: 0.75fr 1.25fr;
    gap: 90px;
    align-items: start;

    width: 100%;
    max-width: 1450px;

    margin: 0 auto;
    padding: 80px 0 50px;
}


/* COLUMNA IZQUIERDA */

.context-intro {
    padding-top: 20px;
}

.context-intro h2 {
    max-width: 520px;
    margin-bottom: 24px;

    color: #123847;
    font-size: clamp(42px, 4vw, 64px);
    line-height: 1;
    letter-spacing: -3px;
}

.context-intro > p:last-child {
    max-width: 400px;

    color: #6c7f87;
    font-size: 16px;
    line-height: 1.6;
}


/* PREGUNTA */

.context-question {
    max-width: 720px;
}

.question-number {
    margin-bottom: 14px;

    color: #ED803E;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 24px;
    font-style: italic;
}

.context-question h3 {
    margin-bottom: 32px;

    color: #123847;
    font-size: clamp(26px, 2.2vw, 36px);
    line-height: 1.15;
    letter-spacing: -1px;
}


/* OPCIONES */

.options {
    display: grid;
    gap: 12px;
}

.option-button {
    display: flex;
    align-items: center;
    gap: 18px;

    width: 100%;
    padding: 16px 20px;

    border: 1px solid rgba(13, 96, 136, 0.15);
    border-radius: 14px;

    background: rgba(255, 255, 255, 0.75);
    color: #435e69;

    font-family: inherit;
    font-size: 14px;
    text-align: left;

    cursor: pointer;

    transition:
        transform 0.2s ease,
        border-color 0.2s ease,
        background 0.2s ease,
        box-shadow 0.2s ease;
}

.option-button > span {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;

    width: 34px;
    height: 34px;

    border: 1px solid rgba(13, 96, 136, 0.18);
    border-radius: 50%;

    color: #0D6088;

    font-size: 11px;
    font-weight: 700;

    transition:
        background 0.2s ease,
        color 0.2s ease,
        border-color 0.2s ease;
}

.option-button:hover {
    transform: translateX(5px);

    border-color: rgba(13, 96, 136, 0.45);
    background: #ffffff;

    box-shadow: 0 10px 30px rgba(18, 56, 71, 0.06);
}

.option-button:hover > span {
    border-color: #0D6088;
    background: #0D6088;
    color: #ffffff;
}


/* RESPONSIVE */

@media (max-width: 900px) {

    .context-content {
        grid-template-columns: 1fr;
        gap: 45px;
        padding-top: 55px;
    }

    .context-intro {
        padding-top: 0;
    }
}


@media (max-width: 650px) {

    .context-screen {
        padding: 24px;
    }

    .step-indicator {
        display: none;
    }

    .context-content {
        padding-top: 45px;
    }

    .context-intro h2 {
        font-size: 42px;
        letter-spacing: -2px;
    }

    .context-question h3 {
        font-size: 27px;
    }

    .option-button {
        padding: 14px 16px;
    }
}
/* =========================================
   SELECCIÓN DE RESPUESTAS
========================================= */

/* Opción seleccionada */

.option-button.selected {
    border-color: #0D6088;
    background: rgba(13, 96, 136, 0.06);

    box-shadow:
        0 8px 25px rgba(13, 96, 136, 0.08);
}

.option-button.selected > span {
    border-color: #0D6088;
    background: #0D6088;
    color: #ffffff;
}


/* ÁREA DEL BOTÓN CONTINUAR */

.question-actions {
    display: flex;
    justify-content: flex-end;

    margin-top: 24px;
}


/* El botón empieza oculto */

.continue-button {
    display: none;

    align-items: center;
    gap: 22px;

    padding: 12px 14px 12px 22px;

    border: none;
    border-radius: 100px;

    background: #0D6088;
    color: #ffffff;

    font-family: inherit;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.7px;

    cursor: pointer;

    animation: showContinue 0.3s ease;
}


/* Círculo de la flecha */

.continue-button span {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 32px;
    height: 32px;

    border-radius: 50%;

    background: #ED803E;
    color: #ffffff;

    font-size: 17px;
}


/* Esta clase hará aparecer el botón */

.continue-button.visible {
    display: inline-flex;
}


.continue-button:hover {
    background: #0a5275;
}


/* Pequeña entrada */

@keyframes showContinue {

    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* =========================================
   PANTALLA DE DIAGNÓSTICO
========================================= */

.diagnostic-screen {
    display: none;
    min-height: 100vh;
    padding: 32px 6%;

    background:
        radial-gradient(
            circle at 88% 18%,
            rgba(13, 96, 136, 0.06),
            transparent 22%
        ),
        radial-gradient(
            circle at 10% 85%,
            rgba(237, 128, 62, 0.07),
            transparent 22%
        ),
        #f8faf8;

    color: #123847;
}


/* ESTRUCTURA PRINCIPAL */

.diagnostic-content {
    display: grid;
    grid-template-columns: 0.75fr 1.25fr;
    gap: 90px;
    align-items: start;

    width: 100%;
    max-width: 1450px;

    margin: 0 auto;
    padding: 80px 0 50px;
}


/* COLUMNA IZQUIERDA */

.diagnostic-intro {
    padding-top: 20px;
}

.diagnostic-intro h2 {
    max-width: 520px;
    margin-bottom: 24px;

    color: #123847;

    font-size: clamp(42px, 4vw, 64px);
    line-height: 1;
    letter-spacing: -3px;
}

.diagnostic-intro > p:last-child {
    max-width: 400px;

    color: #6c7f87;

    font-size: 16px;
    line-height: 1.6;
}


/* COLUMNA DE PREGUNTA */

.diagnostic-question {
    max-width: 720px;
}

.diagnostic-question h3 {
    margin-bottom: 32px;

    color: #123847;

    font-size: clamp(26px, 2.2vw, 36px);
    line-height: 1.15;
    letter-spacing: -1px;
}


/* RESPONSIVE */

@media (max-width: 900px) {

    .diagnostic-content {
        grid-template-columns: 1fr;
        gap: 45px;

        padding-top: 55px;
    }

    .diagnostic-intro {
        padding-top: 0;
    }
}


@media (max-width: 650px) {

    .diagnostic-screen {
        padding: 24px;
    }

    .diagnostic-content {
        padding-top: 45px;
    }

    .diagnostic-intro h2 {
        font-size: 42px;
        letter-spacing: -2px;
    }

    .diagnostic-question h3 {
        font-size: 27px;
    }
}
/* =========================================
   MICROEXPERIENCIA — DECISIÓN
========================================= */

.microexperience-mode {
    background:
        radial-gradient(
            circle at 85% 15%,
            rgba(237, 128, 62, 0.10),
            transparent 24%
        ),
        radial-gradient(
            circle at 10% 85%,
            rgba(13, 96, 136, 0.08),
            transparent 25%
        ),
        #f8faf8;
}


/* La microexperiencia utiliza más espacio */
.microexperience-mode .diagnostic-content {
    grid-template-columns: 0.65fr 1.35fr;
}


/* Etiqueta especial */
.microexperience-mode #dimension-label {
    color: #ED803E;
}


/* Opciones convertidas en tarjetas */
.microexperience-mode #diagnostic-options {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}


/* Tarjeta de decisión */
.microexperience-mode .option-button {
    position: relative;
    align-items: flex-start;
    min-height: 145px;
    padding: 24px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.82);
}


/* Letra A, B, C, D */
.microexperience-mode .option-button > span {
    width: 38px;
    height: 38px;
}


/* Movimiento diferente al pasar el mouse */
.microexperience-mode .option-button:hover {
    transform: translateY(-5px);
}


/* Opción seleccionada */
.microexperience-mode .option-button.selected {
    transform: translateY(-3px);
    background: #ffffff;
    border-color: #0D6088;
    box-shadow:
        0 18px 45px rgba(18, 56, 71, 0.10);
}


/* Responsive */
@media (max-width: 900px) {

    .microexperience-mode .diagnostic-content {
        grid-template-columns: 1fr;
    }

}


@media (max-width: 650px) {

    .microexperience-mode #diagnostic-options {
        grid-template-columns: 1fr;
    }

    .microexperience-mode .option-button {
        min-height: auto;
    }

}
/* Contenido interno de las tarjetas */

.microexperience-mode .option-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.microexperience-mode .option-label {
    color: #0D6088;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.2px;
}

.microexperience-mode .option-content p {
    margin: 0;
    color: #536b75;
    font-size: 14px;
    line-height: 1.5;
}

.microexperience-mode .option-button.selected .option-label {
    color: #ED803E;
}
/* =========================================
   FEEDBACK MICROEXPERIENCIA
========================================= */

.feedback-screen {
    display: none;
    min-height: 100vh;
    padding: 32px 6%;
    background: #f8faf8;
    color: #123847;
}
/* =========================================
   CONTENIDO DEL FEEDBACK
========================================= */

.feedback-content {
    width: 100%;
    max-width: 1450px;
    margin: 0 auto;
    padding: 80px 0 50px;
}


/* Encabezado principal */

.feedback-heading {
    max-width: 900px;
    margin-bottom: 70px;
}

.feedback-heading h2 {
    margin-bottom: 24px;
    color: #123847;
    font-size: clamp(46px, 4.5vw, 72px);
    line-height: 0.98;
    letter-spacing: -3px;
}

.feedback-heading > p:last-child {
    max-width: 720px;
    color: #647982;
    font-size: 17px;
    line-height: 1.65;
}


/* =========================================
   RUTA DE APRENDIZAJE
========================================= */

.learning-path {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
    align-items: center;
    gap: 18px;

    padding: 28px;

    border: 1px solid rgba(13, 96, 136, 0.12);
    border-radius: 24px;

    background: rgba(255, 255, 255, 0.72);

    box-shadow:
        0 18px 60px rgba(18, 56, 71, 0.05);
}


/* Cada etapa */

.learning-step {
    position: relative;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    min-height: 145px;
    padding: 22px;

    border-radius: 18px;

    background: #ffffff;
}


/* Número */

.learning-step span {
    color: #ED803E;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 20px;
    font-style: italic;
}


/* Nombre */

.learning-step strong {
    color: #0D6088;

    font-size: 13px;
    line-height: 1.25;
    letter-spacing: 1px;
}


/* Flechas */

.learning-arrow {
    color: #ED803E;
    font-size: 25px;
}


/* Último paso destacado */

.learning-step:last-child {
    background: #0D6088;
}

.learning-step:last-child span {
    color: #ED803E;
}

.learning-step:last-child strong {
    color: #ffffff;
}


/* =========================================
   BOTÓN
========================================= */

.feedback-actions {
    display: flex;
    justify-content: flex-end;
    margin-top: 34px;
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 900px) {

    .feedback-content {
        padding-top: 55px;
    }

    .learning-path {
        grid-template-columns: 1fr;
    }

    .learning-arrow {
        transform: rotate(90deg);
        justify-self: center;
    }

}


@media (max-width: 650px) {

    .feedback-screen {
        padding: 24px;
    }

    .feedback-heading h2 {
        font-size: 42px;
        letter-spacing: -2px;
    }

    .feedback-heading {
        margin-bottom: 45px;
    }

}
/* =========================================
   DIAGNÓSTICO LISTO
========================================= */

.diagnosis-ready-screen {
    display: none;
    min-height: 100vh;
    padding: 32px 6%;
    background:
        radial-gradient(
            circle at 78% 35%,
            rgba(237, 128, 62, 0.10),
            transparent 24%
        ),
        radial-gradient(
            circle at 20% 80%,
            rgba(13, 96, 136, 0.07),
            transparent 25%
        ),
        #f8faf8;

    color: #123847;
}
/* =========================================
   CONTENIDO — DIAGNÓSTICO LISTO
========================================= */

.diagnosis-ready-content {
    width: 100%;
    max-width: 1450px;
    margin: 0 auto;
    padding: 75px 0 50px;
}


/* Título principal */

.diagnosis-ready-content h2 {
    max-width: 850px;
    margin-bottom: 28px;

    color: #123847;

    font-size: clamp(58px, 5.5vw, 88px);
    font-weight: 700;
    line-height: 0.95;
    letter-spacing: -4px;
}


/* Palabra destacada */

.diagnosis-ready-content h2 span {
    color: #ED803E;

    font-family: Georgia, "Times New Roman", serif;
    font-style: italic;
    font-weight: 400;
}


/* Texto introductorio */

.diagnosis-ready-text {
    max-width: 650px;
    margin-bottom: 55px;

    color: #647982;

    font-size: 17px;
    line-height: 1.65;
}


/* =========================================
   PREVIEW DEL RESULTADO
========================================= */

.diagnosis-preview {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    max-width: 1050px;
    margin-bottom: 42px;

    border-top: 1px solid rgba(13, 96, 136, 0.15);
    border-bottom: 1px solid rgba(13, 96, 136, 0.15);
}


.preview-item {
    min-height: 135px;
    padding: 24px 28px;

    border-right: 1px solid rgba(13, 96, 136, 0.15);
}


.preview-item:first-child {
    padding-left: 0;
}


.preview-item:last-child {
    border-right: none;
}


.preview-item span {
    display: block;
    margin-bottom: 25px;

    color: #ED803E;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 18px;
    font-style: italic;
}


.preview-item p {
    max-width: 220px;

    color: #0D6088;

    font-size: 13px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0.3px;
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 800px) {

    .diagnosis-ready-content {
        padding-top: 55px;
    }

    .diagnosis-preview {
        grid-template-columns: 1fr;
    }

    .preview-item {
        min-height: auto;
        padding: 22px 0;

        border-right: none;
        border-bottom: 1px solid rgba(13, 96, 136, 0.15);
    }

    .preview-item:last-child {
        border-bottom: none;
    }

}

as
@media (max-width: 650px) {

    .diagnosis-ready-screen {
        padding: 24px;
    }

    .diagnosis-ready-content h2 {
        font-size: 52px;
        letter-spacing: -3px;
    }

}
/* =========================================
   DIAGNÓSTICO LISTO — REDISEÑO EDITORIAL
========================================= */

/* Distribución principal */

.diagnosis-ready-content {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    grid-template-rows: auto auto auto auto;
    column-gap: 100px;
    align-items: center;

    width: 100%;
    max-width: 1450px;
    min-height: calc(100vh - 130px);

    margin: 0 auto;
    padding: 45px 0 55px;
}


/* Elementos del lado izquierdo */

.diagnosis-ready-content > .eyebrow {
    grid-column: 1;
    grid-row: 1;

    align-self: end;
    margin-bottom: 20px;
}


.diagnosis-ready-content > h2 {
    grid-column: 1;
    grid-row: 2;

    max-width: 650px;
    margin-bottom: 28px;

    font-size: clamp(58px, 5vw, 82px);
}


.diagnosis-ready-text {
    grid-column: 1;
    grid-row: 3;

    max-width: 570px;
    margin-bottom: 35px;
}


.diagnosis-ready-content > .primary-button {
    grid-column: 1;
    grid-row: 4;

    justify-self: start;
    align-self: start;
}


/* =========================================
   COMPOSICIÓN DEL RESULTADO
========================================= */

.result-preview {
    position: relative;

    grid-column: 2;
    grid-row: 1 / 5;

    width: 100%;
    max-width: 650px;
    height: 500px;

    justify-self: end;
}


.result-preview-label {
    position: absolute;
    top: 5px;
    left: 25px;

    color: #73868d;

    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.8px;
}


/* Tarjetas */

.result-card {
    position: absolute;

    display: flex;
    gap: 22px;

    padding: 26px;

    border: 1px solid rgba(13, 96, 136, 0.15);
    border-radius: 22px;

    background: rgba(255, 255, 255, 0.88);

    box-shadow:
        0 18px 50px rgba(18, 56, 71, 0.07);

    backdrop-filter: blur(8px);
}


.result-card > span {
    flex: 0 0 auto;

    color: #ED803E;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 22px;
    font-style: italic;
}


.result-card strong {
    display: block;
    margin-bottom: 10px;

    color: #0D6088;

    font-size: 11px;
    line-height: 1.3;
    letter-spacing: 1.1px;
}


.result-card p {
    max-width: 250px;

    color: #647982;

    font-size: 13px;
    line-height: 1.5;
}


/* Posición de cada tarjeta */

.result-card-profile {
    top: 55px;
    left: 0;

    width: 390px;
    min-height: 150px;

    transform: rotate(-2deg);
}


.result-card-opportunity {
    top: 195px;
    right: 0;

    width: 430px;
    min-height: 165px;

    transform: rotate(2deg);
}


.result-card-recommendations {
    left: 50px;
    bottom: 5px;

    width: 410px;
    min-height: 145px;

    transform: rotate(-1deg);
}


/* Flecha de la tercera tarjeta */

.result-card-recommendations i {
    position: absolute;
    right: 22px;
    bottom: 20px;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 38px;
    height: 38px;

    border-radius: 50%;

    background: #ED803E;
    color: #ffffff;

    font-size: 18px;
    font-style: normal;
}


/* Eliminamos visualmente el diseño anterior */

.diagnosis-preview {
    display: none;
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 1000px) {

    .diagnosis-ready-content {
        grid-template-columns: 1fr;
        display: block;

        min-height: auto;
        padding-top: 55px;
    }

    .result-preview {
        max-width: 650px;
        height: 500px;

        margin: 65px auto 40px;
    }

}


@media (max-width: 650px) {

    .result-preview {
        display: grid;
        gap: 14px;

        height: auto;
        margin-top: 55px;
    }

    .result-preview-label {
        position: static;
        margin-bottom: 5px;
    }

    .result-card {
        position: relative;
        top: auto;
        right: auto;
        bottom: auto;
        left: auto;

        width: 100%;
        min-height: auto;

        transform: none;
    }

}
/* =========================================
   CAPTURA DE DATOS
========================================= */

.lead-screen {
    display: none;

    min-height: 100vh;
    padding: 32px 6%;

    background:
        radial-gradient(
            circle at 82% 25%,
            rgba(237, 128, 62, 0.08),
            transparent 24%
        ),
        #f8faf8;

    color: #123847;
}
/* =========================================
   DATOS DE CONTACTO — DISEÑO
========================================= */

.lead-content {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 110px;
    align-items: center;

    width: 100%;
    max-width: 1450px;
    min-height: calc(100vh - 130px);

    margin: 0 auto;
    padding: 55px 0;
}


/* =========================================
   LADO IZQUIERDO
========================================= */

.lead-intro {
    max-width: 570px;
}

.lead-intro h2 {
    margin-bottom: 28px;

    color: #123847;

    font-size: clamp(50px, 4.5vw, 72px);
    line-height: 0.98;
    letter-spacing: -3px;
}

.lead-intro > p:last-child {
    max-width: 470px;

    color: #647982;

    font-size: 16px;
    line-height: 1.65;
}


/* =========================================
   FORMULARIO
========================================= */

.lead-form {
    width: 100%;
    max-width: 650px;

    padding: 42px;

    border: 1px solid rgba(13, 96, 136, 0.14);
    border-radius: 26px;

    background: rgba(255, 255, 255, 0.86);

    box-shadow:
        0 22px 70px rgba(18, 56, 71, 0.07);

    backdrop-filter: blur(10px);
}


/* Cada campo */

.form-field {
    margin-bottom: 28px;
}

.form-field label {
    display: block;

    margin-bottom: 10px;

    color: #0D6088;

    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
}


/* Inputs */

.form-field input {
    width: 100%;

    padding: 15px 0;

    border: none;
    border-bottom: 1px solid rgba(13, 96, 136, 0.22);

    outline: none;

    background: transparent;

    color: #123847;

    font-family: inherit;
    font-size: 17px;

    transition:
        border-color 0.2s ease,
        padding-left 0.2s ease;
}


.form-field input::placeholder {
    color: #a0adb2;
}


.form-field input:focus {
    padding-left: 6px;
    border-bottom-color: #ED803E;
}


/* =========================================
   PRIVACIDAD
========================================= */

.privacy-field {
    display: flex;
    align-items: flex-start;
    gap: 12px;

    margin: 8px 0 30px;

    cursor: pointer;
}


.privacy-field input {
    flex: 0 0 auto;

    width: 17px;
    height: 17px;
    margin-top: 2px;

    accent-color: #0D6088;

    cursor: pointer;
}


.privacy-field span {
    max-width: 500px;

    color: #71838a;

    font-size: 11px;
    line-height: 1.55;
}


/* Botón */

.lead-form .primary-button {
    margin-top: 4px;
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 900px) {

    .lead-content {
        grid-template-columns: 1fr;
        gap: 50px;

        min-height: auto;
        padding-top: 55px;
    }

    .lead-form {
        max-width: 100%;
    }

}


@media (max-width: 650px) {

    .lead-screen {
        padding: 24px;
    }

    .lead-intro h2 {
        font-size: 46px;
        letter-spacing: -2px;
    }

    .lead-form {
        padding: 28px 22px;
        border-radius: 20px;
    }

}
/* ==========================================
   RESULTADO PERSONALIZADO
========================================== */

.result-screen {
    display: none;
    min-height: 100vh;
    padding: 32px 6%;
    background:
        radial-gradient(
            circle at 85% 18%,
            rgba(237, 128, 62, 0.09),
            transparent 25%
        ),
        radial-gradient(
            circle at 12% 75%,
            rgba(13, 96, 136, 0.07),
            transparent 28%
        ),
        #f8faf8;
    color: #123847;
}


/* CONTENEDOR PRINCIPAL */

.result-content {
    width: 100%;
    max-width: 1450px;
    margin: 0 auto;
    padding: 80px 0 100px;
}


/* ==========================================
   HERO DEL RESULTADO
========================================== */

.result-hero {
    position: relative;
    max-width: 1000px;
    margin-bottom: 80px;
}

.result-greeting {
    margin: 18px 0 8px;
    color: #71838a;
    font-size: 15px;
}

.result-hero h1 {
    max-width: 900px;
    margin: 0 0 28px;
    color: #123847;
    font-size: clamp(58px, 6vw, 94px);
    line-height: 0.94;
    letter-spacing: -4px;
}

.result-profile-description {
    max-width: 720px;
    margin: 0;
    color: #647982;
    font-size: 18px;
    line-height: 1.65;
}


/* ==========================================
   FORTALEZA + OPORTUNIDAD
========================================== */

.result-insights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 90px;
}

.insight-card {
    position: relative;
    min-height: 310px;
    padding: 38px;
    overflow: hidden;
    border-radius: 26px;
}

.strength-card {
    border: 1px solid rgba(13, 96, 136, 0.14);
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 20px 60px rgba(18, 56, 71, 0.06);
}

.opportunity-card {
    background: #0D6088;
    color: #ffffff;
    box-shadow: 0 22px 65px rgba(13, 96, 136, 0.18);
}

.insight-number {
    position: absolute;
    top: 28px;
    right: 32px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 28px;
    font-style: italic;
    opacity: 0.35;
}

.insight-label {
    margin: 0 0 55px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.7px;
}

.strength-card .insight-label {
    color: #0D6088;
}

.opportunity-card .insight-label {
    color: rgba(255, 255, 255, 0.72);
}

.insight-card h2 {
    margin: 0 0 20px;
    font-size: clamp(34px, 3vw, 48px);
    line-height: 1;
    letter-spacing: -2px;
}

.strength-card h2 {
    color: #123847;
}

.opportunity-card h2 {
    color: #ffffff;
}

.insight-card > p:last-child {
    max-width: 520px;
    margin: 0;
    font-size: 15px;
    line-height: 1.65;
}

.strength-card > p:last-child {
    color: #647982;
}

.opportunity-card > p:last-child {
    color: rgba(255, 255, 255, 0.78);
}


/* ==========================================
   RECOMENDACIÓN
========================================== */

.result-recommendation {
    position: relative;
    max-width: 1050px;
    padding: 0 0 40px;
}

.result-recommendation h2 {
    max-width: 850px;
    margin: 20px 0 25px;
    color: #123847;
    font-size: clamp(44px, 4.5vw, 68px);
    line-height: 1;
    letter-spacing: -3px;
}

#result-recommendation-text {
    max-width: 720px;
    margin: 0;
    color: #647982;
    font-size: 17px;
    line-height: 1.65;
}


/* PRÓXIMO PASO */

.recommendation-action {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 30px;
    max-width: 850px;
    margin-top: 45px;
    padding-top: 28px;
    border-top: 1px solid rgba(13, 96, 136, 0.18);
}

.recommendation-action span {
    color: #ED803E;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.recommendation-action p {
    max-width: 580px;
    margin: 0;
    color: #123847;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.55;
}


/* ==========================================
   RESPONSIVE
========================================== */

@media (max-width: 900px) {

    .result-content {
        padding-top: 55px;
    }

    .result-insights {
        grid-template-columns: 1fr;
    }

    .result-hero h1 {
        letter-spacing: -3px;
    }

}


@media (max-width: 650px) {

    .result-screen {
        padding: 24px;
    }

    .result-content {
        padding: 45px 0 70px;
    }

    .result-hero {
        margin-bottom: 55px;
    }

    .result-hero h1 {
        font-size: 50px;
        letter-spacing: -2.5px;
    }

    .result-profile-description {
        font-size: 16px;
    }

    .result-insights {
        margin-bottom: 65px;
    }

    .insight-card {
        min-height: auto;
        padding: 30px 26px;
    }

    .insight-label {
        margin-bottom: 42px;
    }

    .recommendation-action {
        grid-template-columns: 1fr;
        gap: 12px;
    }

}
/* ==========================================
   AJUSTE DE ALTURA + NOMBRE — RESULTADO
========================================== */

@media (min-width: 901px) {

    .result-content {
        padding-top: 50px;
        padding-bottom: 90px;
    }

    .result-hero {
        margin-bottom: 50px;
    }

    /* Nombre del participante */

    .result-greeting {
        margin: 20px 0 14px;

        color: #0D6088;

        font-size: 20px;
        font-weight: 600;
        line-height: 1.4;

        letter-spacing: -0.2px;
    }

    /* Perfil */

    .result-hero h1 {
        max-width: 850px;
        margin-bottom: 22px;

        font-size: clamp(56px, 5vw, 82px);
        line-height: 0.92;

        letter-spacing: -4px;
    }

    .result-profile-description {
        max-width: 760px;

        font-size: 16px;
        line-height: 1.6;
    }

    /* Fortaleza + oportunidad */

    .result-insights {
        gap: 22px;
        margin-bottom: 75px;
    }

    .insight-card {
        min-height: 270px;
        padding: 34px 38px;
    }

    .insight-label {
        margin-bottom: 42px;
    }

}
/* ==========================================
   MAPA DE APRENDIZAJE
========================================== */

.capability-map {
    margin-bottom: 95px;
    padding: 58px 60px;

    border: 1px solid rgba(13, 96, 136, 0.12);
    border-radius: 28px;

    background: rgba(255, 255, 255, 0.72);

    box-shadow:
        0 22px 70px rgba(18, 56, 71, 0.05);

    backdrop-filter: blur(8px);
}


/* ENCABEZADO */

.capability-map-heading {
    display: grid;
    grid-template-columns: 1fr 0.8fr;
    gap: 80px;
    align-items: end;

    margin-bottom: 55px;
}

.capability-map-heading h2 {
    max-width: 650px;

    margin: 16px 0 0;

    color: #123847;

    font-size: clamp(38px, 3.5vw, 56px);
    line-height: 1;

    letter-spacing: -2.5px;
}

.capability-map-heading > p {
    max-width: 470px;

    margin: 0 0 5px;

    color: #647982;

    font-size: 14px;
    line-height: 1.65;
}


/* LISTA */

.capability-list {
    border-top: 1px solid rgba(13, 96, 136, 0.12);
}


/* CADA DIMENSIÓN */

.capability-item {
    display: grid;

    grid-template-columns:
        minmax(220px, 0.7fr)
        minmax(350px, 1.3fr);

    gap: 60px;
    align-items: center;

    min-height: 82px;

    border-bottom:
        1px solid rgba(13, 96, 136, 0.10);
}


/* NOMBRE */

.capability-info {
    display: flex;
    align-items: center;
    gap: 22px;
}

.capability-info span {
    color: #ED803E;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 17px;
    font-style: italic;
}

.capability-info strong {
    color: #123847;

    font-size: 16px;
    font-weight: 600;
}


/* LÍNEA DE PROGRESO */

.capability-track {
    position: relative;

    width: 100%;
    height: 6px;

    overflow: hidden;

    border-radius: 100px;

    background:
        rgba(13, 96, 136, 0.09);
}


/* RESULTADO */

.capability-progress {
    width: 0%;
    height: 100%;

    border-radius: 100px;

    background: #0D6088;

    transition:
        width 0.8s ease;
}


/* PUNTO AL FINAL DE LA LÍNEA */

.capability-progress::after {
    content: "";

    position: absolute;

    top: 50%;
    right: 0;

    width: 12px;
    height: 12px;

    border-radius: 50%;

    background: #ED803E;

    transform:
        translate(50%, -50%);
}


/* ==========================================
   RESPONSIVE
========================================== */

@media (max-width: 900px) {

    .capability-map {
        padding: 42px;
    }

    .capability-map-heading {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .capability-item {
        grid-template-columns: 180px 1fr;
        gap: 30px;
    }

}


@media (max-width: 650px) {

    .capability-map {
        margin-bottom: 70px;
        padding: 32px 24px;

        border-radius: 22px;
    }

    .capability-map-heading {
        margin-bottom: 38px;
    }

    .capability-map-heading h2 {
        font-size: 38px;
        letter-spacing: -2px;
    }

    .capability-item {
        grid-template-columns: 1fr;
        gap: 14px;

        padding: 22px 0;
    }

}
/* ==========================================
   CIERRE MENTOR
========================================== */

.mentor-cta {
    position: relative;

    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 70px;
    align-items: center;

    margin-top: 40px;
    padding: 65px 70px;

    overflow: hidden;

    border-radius: 30px;

    background: #0D6088;

    box-shadow:
        0 28px 80px rgba(13, 96, 136, 0.18);
}


/* DETALLE DE FONDO */

.mentor-cta::before {
    content: "";

    position: absolute;
    width: 430px;
    height: 430px;

    top: -230px;
    right: -100px;

    border-radius: 50%;

    background:
        rgba(237, 128, 62, 0.16);
}


/* ==========================================
   CONTENIDO
========================================== */

.mentor-cta-content {
    position: relative;
    z-index: 2;
}

.mentor-cta .eyebrow {
    color: rgba(255, 255, 255, 0.62);
}

.mentor-cta h2 {
    max-width: 720px;

    margin: 18px 0 26px;

    color: #ffffff;

    font-size: clamp(48px, 4.5vw, 70px);
    line-height: 0.96;

    letter-spacing: -3px;
}

.mentor-cta h2 span {
    color: #ED803E;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-style: italic;
    font-weight: 400;
}

.mentor-cta-text {
    max-width: 580px;

    margin: 0;

    color: rgba(255, 255, 255, 0.76);

    font-size: 16px;
    line-height: 1.65;
}


/* ==========================================
   BOTONES
========================================== */

.mentor-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;

    margin-top: 38px;
}


/* BOTÓN PRINCIPAL DENTRO DEL CTA */

.mentor-cta .primary-button {
    background: #ED803E;
    color: #ffffff;

    box-shadow:
        0 12px 30px rgba(0, 0, 0, 0.10);
}

.mentor-cta .primary-button:hover {
    transform: translateY(-2px);
}


/* BOTÓN SECUNDARIO */

.secondary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 16px;

    min-height: 52px;

    padding: 0 24px;

    border:
        1px solid rgba(255, 255, 255, 0.30);

    border-radius: 100px;

    background: transparent;

    color: #ffffff;

    font-family: inherit;
    font-size: 11px;
    font-weight: 700;

    letter-spacing: 0.7px;

    cursor: pointer;

    transition:
        background 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease;
}

.secondary-button:hover {
    border-color:
        rgba(255, 255, 255, 0.60);

    background:
        rgba(255, 255, 255, 0.08);

    transform: translateY(-2px);
}


/* ==========================================
   VISUAL DERECHO
========================================== */

.mentor-cta-visual {
    position: relative;
    z-index: 2;

    min-height: 330px;

    padding: 32px;

    border:
        1px solid rgba(255, 255, 255, 0.16);

    border-radius: 24px;

    background:
        rgba(255, 255, 255, 0.07);

    backdrop-filter: blur(8px);
}

.cta-index {
    display: block;

    margin-bottom: 70px;

    color:
        rgba(255, 255, 255, 0.48);

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 1.6px;
}


/* RECORRIDO */

.cta-concept {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 12px;
}

.cta-concept > div {
    display: flex;
    flex-direction: column;

    gap: 10px;
}

.cta-concept > div > span {
    color: #ED803E;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 18px;
    font-style: italic;
}

.cta-concept strong {
    color: #ffffff;

    font-size: 10px;
    letter-spacing: 0.8px;
}

.cta-concept > i {
    color:
        rgba(255, 255, 255, 0.30);

    font-size: 18px;
    font-style: normal;
}


/* DESTINO FINAL */

.cta-concept-final {
    position: relative;

    padding: 22px;

    border-radius: 16px;

    background: #ffffff;
}

.cta-concept-final strong {
    color: #0D6088;
}


/* ==========================================
   RESPONSIVE
========================================== */

@media (max-width: 1100px) {

    .mentor-cta {
        grid-template-columns: 1fr;

        gap: 50px;
    }

    .mentor-cta-visual {
        min-height: auto;
    }

}


@media (max-width: 650px) {

    .mentor-cta {
        padding: 42px 26px;

        border-radius: 24px;
    }

    .mentor-cta h2 {
        font-size: 46px;
        letter-spacing: -2px;
    }

    .mentor-cta-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .mentor-cta-actions button {
        width: 100%;
    }

    .cta-index {
        margin-bottom: 45px;
    }

    .cta-concept {
        align-items: stretch;
        flex-direction: column;

        gap: 18px;
    }

    .cta-concept > i {
        transform: rotate(90deg);
        align-self: center;
    }

}/* ==========================================
   CIERRE MENTOR — AJUSTE FINAL
========================================== */

@media (min-width: 1101px) {

    .mentor-cta {
        grid-template-columns: 1fr 0.82fr;
        gap: 65px;

        padding: 52px 60px;
    }

    .mentor-cta h2 {
        margin: 16px 0 22px;

        font-size: clamp(46px, 4vw, 64px);
        line-height: 0.95;
    }

    .mentor-cta-text {
        max-width: 540px;

        font-size: 15px;
        line-height: 1.55;
    }

    .mentor-cta-actions {
        margin-top: 30px;
        gap: 12px;
    }

    .mentor-cta-actions .primary-button,
    .mentor-cta-actions .secondary-button {
        min-height: 48px;
    }

}


/* ==========================================
   TARJETA — TU SIGUIENTE OPORTUNIDAD
========================================== */

.mentor-opportunity {
    position: relative;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    min-height: 330px;

    padding: 32px 34px;

    overflow: hidden;

    border:
        1px solid rgba(255, 255, 255, 0.20);

    border-radius: 24px;

    background:
        rgba(255, 255, 255, 0.08);

    backdrop-filter: blur(10px);
}


/* CÍRCULO DECORATIVO */

.mentor-opportunity::after {
    content: "";

    position: absolute;

    width: 210px;
    height: 210px;

    top: -110px;
    right: -80px;

    border-radius: 50%;

    border:
        1px solid rgba(237, 128, 62, 0.30);

    pointer-events: none;
}


/* CABECERA */

.mentor-opportunity-top {
    position: relative;
    z-index: 2;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mentor-opportunity .cta-index {
    margin: 0;

    color:
        rgba(255, 255, 255, 0.55);

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 1.6px;
}

.opportunity-arrow {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 40px;
    height: 40px;

    border-radius: 50%;

    background: #ED803E;

    color: #ffffff;

    font-size: 18px;
}


/* CONTENIDO PRINCIPAL */

.mentor-opportunity-content {
    position: relative;
    z-index: 2;

    margin: 45px 0 40px;
}

.opportunity-number {
    display: block;

    margin-bottom: 8px;

    color: #ED803E;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 18px;
    font-style: italic;
}

.mentor-opportunity-content h3 {
    margin: 0 0 18px;

    color: #ffffff;

    font-size: clamp(38px, 3vw, 50px);
    font-weight: 600;
    line-height: 1;

    letter-spacing: -2px;
}

.mentor-opportunity-content p {
    max-width: 470px;

    margin: 0;

    color:
        rgba(255, 255, 255, 0.70);

    font-size: 13px;
    line-height: 1.6;
}


/* PIE DE TARJETA */

.mentor-opportunity-footer {
    position: relative;
    z-index: 2;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;

    padding-top: 20px;

    border-top:
        1px solid rgba(255, 255, 255, 0.14);
}

.mentor-opportunity-footer span {
    color:
        rgba(255, 255, 255, 0.45);

    font-size: 8px;
    font-weight: 700;

    letter-spacing: 1.2px;
}

.mentor-opportunity-footer strong {
    color: #ffffff;

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 1px;

    white-space: nowrap;
}


/* ==========================================
   RESPONSIVE
========================================== */

@media (max-width: 1100px) {

    .mentor-opportunity {
        min-height: 310px;
    }

}


@media (max-width: 650px) {

    .mentor-opportunity {
        min-height: auto;

        padding: 28px 24px;
    }

    .mentor-opportunity-content {
        margin: 40px 0 35px;
    }

    .mentor-opportunity-footer {
        align-items: flex-start;
        flex-direction: column;

        gap: 8px;
    }

}
/* ==========================================
   AJUSTES DE JERARQUÍA — OPORTUNIDAD
========================================== */


/* TU SIGUIENTE OPORTUNIDAD */

.mentor-opportunity .cta-index {
    color: rgba(255, 255, 255, 0.78);

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 1.5px;
}


/* MENSAJE FINAL */

.mentor-opportunity-footer {
    justify-content: flex-start;
    gap: 10px;
}

.mentor-opportunity-footer span {
    color: rgba(255, 255, 255, 0.62);

    font-size: 10px;
    font-weight: 600;

    letter-spacing: 1.2px;
}

.mentor-opportunity-footer strong {
    color: #ED803E;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 1.1px;

    white-space: nowrap;
}
/* ==========================================
   FEEDBACK — NUEVA PANTALLA
========================================== */

.feedback-screen {
    display: none;
    min-height: 100vh;
    padding: 32px 6% 60px;

    background:
        radial-gradient(
            circle at 80% 40%,
            rgba(13, 96, 136, 0.05),
            transparent 30%
        ),
        #f8faf8;

    color: #123847;
}


/* CONTENEDOR */

.feedback-content {
    width: 100%;
    max-width: 1450px;

    margin: 0 auto;
    padding: 65px 0 40px;
}


/* ==========================================
   INTRODUCCIÓN
========================================== */

.feedback-intro {
    max-width: 1050px;
    margin-bottom: 45px;
}

.feedback-eyebrow {
    margin: 0 0 18px;

    color: #0D6088;

    font-size: 14px;
    font-weight: 700;

    letter-spacing: 2px;
}

.feedback-intro h1 {
    max-width: 1000px;

    margin: 0;

    color: #123847;

    font-size: clamp(46px, 4.4vw, 72px);
    font-weight: 600;

    line-height: 0.98;
    letter-spacing: -3px;
}

.feedback-intro h1 span {
    color: #0D6088;
}

.feedback-intro-text {
    max-width: 760px;

    margin: 25px 0 0;

    color: #56717b;

    font-size: 18px;
    line-height: 1.6;
}


/* ==========================================
   COMPARACIÓN
========================================== */

.learning-comparison {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;

    min-height: 330px;

    margin-top: 45px;

    overflow: hidden;

    border: 1px solid #dbe5e8;
    border-radius: 26px;

    background: #ffffff;

    box-shadow:
        0 20px 60px rgba(18, 56, 71, 0.07);
}


/* AMBOS LADOS */

.comparison-side {
    position: relative;

    display: flex;
    flex-direction: column;

    padding: 42px 46px;
}


/* ==========================================
   LADO INFORMAR
========================================== */

.information-side {
    justify-content: center;

    background: #ffffff;
}

.information-side::after {
    content: "→";

    position: absolute;

    top: 50%;
    right: -25px;

    z-index: 5;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 50px;
    height: 50px;

    transform: translateY(-50%);

    border-radius: 50%;

    background: #ED803E;

    color: #ffffff;

    font-size: 22px;
}


/* ==========================================
   LADO CAPACIDAD
========================================== */

.capability-side {
    justify-content: center;

    background: #0D6088;

    color: #ffffff;
}


/* ETIQUETAS */

.comparison-label {
    margin: 0 0 18px;

    font-size: 14px;
    font-weight: 700;

    letter-spacing: 1.7px;
}

.information-side .comparison-label {
    color: #6c858e;
}

.capability-side .comparison-label {
    color: #f4a16c;
}


/* TÍTULOS */

.comparison-side h2 {
    margin: 0 0 18px;

    font-size: clamp(32px, 3vw, 46px);
    font-weight: 600;

    line-height: 1;
    letter-spacing: -1.5px;
}

.information-side h2 {
    color: #123847;
}

.capability-side h2 {
    color: #ffffff;
}


/* DESCRIPCIONES */

.comparison-description {
    max-width: 560px;

    margin: 0;

    font-size: 17px;
    line-height: 1.55;
}

.information-side .comparison-description {
    color: #607881;
}

.capability-side .comparison-description {
    color: rgba(255, 255, 255, 0.78);
}


/* ==========================================
   CONCEPTOS
========================================== */

.comparison-concepts,
.capability-actions {
    display: flex;
    flex-wrap: wrap;

    gap: 10px;

    margin-top: 32px;
}


/* INFORMAR */

.comparison-concepts span {
    padding: 10px 15px;

    border: 1px solid #d8e2e5;
    border-radius: 100px;

    background: #f8faf9;

    color: #496771;

    font-size: 14px;
    font-weight: 600;
}


/* CAPACIDAD */

.capability-actions span {
    padding: 10px 15px;

    border:
        1px solid rgba(255, 255, 255, 0.22);

    border-radius: 100px;

    background:
        rgba(255, 255, 255, 0.08);

    color: #ffffff;

    font-size: 14px;
    font-weight: 600;
}


/* ==========================================
   CONCLUSIÓN
========================================== */

.feedback-conclusion {
    display: grid;
    grid-template-columns: 150px 1fr;

    align-items: center;
    gap: 35px;

    max-width: 1050px;

    margin: 38px 0 0;
}

.conclusion-marker {
    color: #ED803E;

    font-size: 13px;
    font-weight: 700;

    letter-spacing: 1.5px;
}

.feedback-conclusion p {
    margin: 0;

    color: #123847;

    font-size: clamp(20px, 1.6vw, 25px);
    line-height: 1.4;
}

.feedback-conclusion strong {
    color: #0D6088;
}


/* ==========================================
   BOTÓN
========================================== */

.feedback-actions {
    display: flex;
    justify-content: flex-end;

    margin-top: 35px;
}

.feedback-actions .primary-button {
    min-width: 285px;
}


/* ==========================================
   TABLET
========================================== */

@media (max-width: 900px) {

    .feedback-content {
        padding-top: 45px;
    }

    .feedback-intro h1 {
        letter-spacing: -2px;
    }

    .learning-comparison {
        grid-template-columns: 1fr;
    }

    .information-side::after {
        top: auto;
        right: 40px;
        bottom: -25px;

        transform: rotate(90deg);
    }

    .comparison-side {
        padding: 40px;
    }

    .feedback-conclusion {
        grid-template-columns: 1fr;
        gap: 10px;
    }

}


/* ==========================================
   MÓVIL
========================================== */

@media (max-width: 650px) {

    .feedback-screen {
        padding:
            24px 22px
            45px;
    }

    .feedback-content {
        padding-top: 35px;
    }

    .feedback-intro {
        margin-bottom: 30px;
    }

    .feedback-eyebrow {
        font-size: 13px;
    }

    .feedback-intro h1 {
        font-size: 40px;

        line-height: 1;

        letter-spacing: -1.8px;
    }

    .feedback-intro-text {
        font-size: 17px;
    }

    .learning-comparison {
        margin-top: 30px;

        border-radius: 20px;
    }

    .comparison-side {
        padding: 35px 26px;
    }

    .comparison-side h2 {
        font-size: 32px;
    }

    .comparison-description {
        font-size: 16px;
    }

    .comparison-concepts span,
    .capability-actions span {
        font-size: 14px;
    }

    .feedback-conclusion {
        margin-top: 30px;
    }

    .feedback-conclusion p {
        font-size: 20px;
    }

    .feedback-actions {
        justify-content: stretch;

        margin-top: 30px;
    }

    .feedback-actions .primary-button {
        width: 100%;
        min-width: 0;
    }

}