/* ==========================================================
   BASE
========================================================== */

html,
body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    background-color: #1d3d72;
}

* {
    box-sizing: border-box;
}


/* ==========================================================
   FONDOS
========================================================== */

/* INICIO / INSCRIPCIÓN */

body.body-inicio {
    background-image: url('../images/Landing_Estrategia_Nacional_de_Desarrollo_PC.jpg');
    background-size: 100% auto;
    background-position: top center;
    background-repeat: no-repeat;
}


/* RESTO DE LAS PÁGINAS */

body.body-general {
    background-color: #1d3d72;
    background-size: 100% auto;
    background-position: top center;
    background-repeat: no-repeat;
}


/* ==========================================================
   ESTRUCTURA GENERAL
========================================================== */

.page-wrapper {
    width: 100%;
    min-height: 100vh;
    background: transparent;
}

main {
    width: 100%;
    min-width: 0;
}

.content-shell {
    width: 100%;
}


/* ==========================================================
   HEADER
========================================================== */

.main-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 14px 0;
    background: linear-gradient( 180deg, rgba(2, 9, 24, .72), rgba(2, 9, 24, .20) );
    -webkit-backdrop-filter: blur(4px);
    z-index: 1000;
}

.header-container {
    width: 92%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}


/* ==========================================================
   LOGO
========================================================== */

.header-logo {
    width: 62px;
    height: 62px;
    background: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    text-decoration: none;
    border-radius: 2px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, .18);
}

    .header-logo img {
        width: 50px;
        height: auto;
        display: block;
    }


/* ==========================================================
   LADO DERECHO HEADER
========================================================== */

.header-right {
    display: flex;
    align-items: center;
    gap: 42px;
    margin-left: auto;
}


/* ==========================================================
   NAV DESKTOP
========================================================== */

.header-nav {
    display: flex;
    align-items: center;
    gap: 40px;
}

    .header-nav a {
        position: relative;
        color: rgba(255, 255, 255, .96);
        text-decoration: none;
        font-size: 13px;
        font-weight: 700;
        letter-spacing: .01em;
        white-space: nowrap;
        text-shadow: 0 1px 4px rgba(0, 0, 0, .45);
        transition: color .2s ease, opacity .2s ease;
    }

        .header-nav a::after {
            content: "";
            position: absolute;
            left: 0;
            right: 0;
            bottom: -7px;
            width: 0;
            height: 2px;
            margin: auto;
            border-radius: 20px;
            background: #5fcaf2;
            transition: width .2s ease;
        }

        .header-nav a:hover {
            color: #77d8f7;
        }

            .header-nav a:hover::after {
                width: 100%;
            }


/* ==========================================================
   BOTÓN INSCRIBITE HEADER
========================================================== */

.header-register {
    min-width: 120px;
    padding: 10px 22px;
    border: 1px solid rgba(95, 202, 242, .85);
    border-radius: 999px;
    background: rgba(7, 28, 56, .72);
    color: #67d3f5;
    text-align: center;
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .02em;
    box-shadow: 0 5px 16px rgba(0, 0, 0, .16);
    transition: color .2s ease, background .2s ease, border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}

    .header-register:hover {
        color: #ffffff;
        background: #176aa6;
        border-color: #6dd8f7;
        transform: translateY(-1px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, .22);
    }


/* ==========================================================
   MENU MOBILE
========================================================== */

.mobile-menu-button,
.mobile-menu {
    display: none;
}


/* ==========================================================
   PÁGINA INSCRIPCIÓN
========================================================== */

.consulta-page {
    position: relative;
    width: 100%;
    min-height: 100vh;
}


/* ==========================================================
   CARD INSCRIPCIÓN
========================================================== */

.consulta-card {
    position: absolute;
    top: 125px;
    right: 6vw;
    width: min(470px, 90vw);
    padding: 30px 34px 34px;
    border: 1px solid rgba(124, 153, 196, .22);
    border-radius: 18px;
    background: #1d3d72;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    color: #ffffff;
    box-shadow: 0 18px 42px rgba(0, 0, 0, .30);
    max-height: calc(100vh - 155px);
    overflow-y: auto;
    overflow-x: hidden;
    scrollbar-width: thin;
    scrollbar-color: #3f6f9f transparent;
}

    .consulta-card::-webkit-scrollbar {
        width: 6px;
    }

    .consulta-card::-webkit-scrollbar-track {
        background: transparent;
    }

    .consulta-card::-webkit-scrollbar-thumb {
        background: #3f6f9f;
        border-radius: 20px;
    }


/* ==========================================================
   ICONO SUPERIOR
========================================================== */

.consulta-icon {
    width: 44px;
    height: 44px;
    margin: 0 auto 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #ffffff;
    background: #1b4f84;
    box-shadow: 0 6px 16px rgba(0, 0, 0, .22);
}

    .consulta-icon svg {
        width: 27px;
        height: 27px;
    }


/* ==========================================================
   TÍTULO LOGIN
========================================================== */

.section-title {
    margin: 0;
    text-align: center;
    color: #ffffff;
    font-size: 23px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: .3px;
}

.title-line {
    width: 44px;
    height: 2px;
    margin: 12px auto 15px;
    border-radius: 10px;
    background: #4fcaf0;
}

.consulta-subtitle {
    margin: 0 0 25px;
    text-align: center;
    color: #ffffff;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.5;
}


/* ==========================================================
   FORMULARIO
========================================================== */

.consulta-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}


/* ==========================================================
   CAMPOS
========================================================== */

.input-set {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 7px;
}

    .input-set label,
    .participacion-label {
        margin: 0;
        color: #ffffff;
        font-size: 12px;
        font-weight: 600;
        line-height: 1.3;
    }

.input-wrapper {
    position: relative;
    width: 100%;
}


/* ==========================================================
   ICONOS INPUT
========================================================== */

.input-icon {
    position: absolute;
    top: 50%;
    left: 13px;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, .58);
    pointer-events: none;
    transition: color .2s ease;
}

    .input-icon svg {
        width: 18px;
        height: 18px;
    }

.input-wrapper:focus-within .input-icon {
    color: #ffffff;
}


/* ==========================================================
   INPUTS
========================================================== */

.input-set input {
    display: block;
    width: 100%;
    height: 44px;
    padding: 0 14px 0 41px;
    border: 1px solid rgba(124, 153, 196, .20);
    border-radius: 7px;
    background: rgba(4, 15, 34, .72);
    color: #ffffff;
    font-family: inherit;
    font-size: 13px;
    font-weight: 400;
    outline: none;
    transition: border-color .2s ease, background .2s ease;
}

    .input-set input::placeholder {
        color: #ffffff !important;
        opacity: 1;
    }

    .input-set input:hover {
        border-color: rgba(95, 202, 242, .32);
    }

    .input-set input:focus {
        border-color: #5fcaf2;
        background: rgba(7, 22, 47, .92);
        box-shadow: none;
    }

    .input-set input[type="number"]::-webkit-inner-spin-button,
    .input-set input[type="number"]::-webkit-outer-spin-button {
        margin: 0;
        -webkit-appearance: none;
    }

    .input-set input[type="number"] {
        -moz-appearance: textfield;
    }


/* ==========================================================
   PARTICIPACIÓN
========================================================== */

.participacion-set {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.participacion-options {
    display: flex;
    gap: 12px;
    width: 100%;
}

.participacion-option {
    position: relative;
    flex: 1;
    min-height: 65px;
    padding: 10px 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(124, 153, 196, .20);
    border-radius: 8px;
    background: rgba(6, 18, 40, .72);
    cursor: pointer;
    transition: border-color .2s ease, background .2s ease, transform .2s ease;
}

    .participacion-option:hover {
        transform: translateY(-1px);
        border-color: rgba(95, 202, 242, .35);
        background: rgba(9, 27, 56, .88);
    }

    .participacion-option:has(input:checked) {
        border-color: rgba(95, 202, 242, .70);
        background: rgba(17, 54, 90, .55);
        box-shadow: none;
    }

    .participacion-option input {
        position: absolute;
        opacity: 0;
        pointer-events: none;
    }


/* ==========================================================
   RADIO
========================================================== */

.radio-custom {
    position: relative;
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    border: 1.5px solid #5fcaf2;
    border-radius: 50%;
}

.participacion-option input:checked + .radio-custom::after {
    content: "";
    position: absolute;
    width: 8px;
    height: 8px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: #5fcaf2;
}


/* ==========================================================
   ICONO PARTICIPACIÓN
========================================================== */

.participacion-icon {
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

    .participacion-icon img {
        width: 100%;
        height: 100%;
        display: block;
        object-fit: contain;
        filter: brightness(0) saturate(100%) invert(77%) sepia(29%) saturate(1165%) hue-rotate(158deg) brightness(101%);
    }


/* ==========================================================
   TEXTO PARTICIPACIÓN
========================================================== */

.participacion-text {
    display: flex;
    flex-direction: column;
    color: #ffffff;
    line-height: 1.2;
}

    .participacion-text strong {
        color: #ffffff;
        font-size: 12px;
        font-weight: 700;
    }

    .participacion-text small {
        margin-top: 4px;
        color: #ffffff;
        font-size: 10px;
    }


/* ==========================================================
   TÉRMINOS
========================================================== */

.terms-row {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    color: #ffffff;
    font-size: 11px;
    line-height: 1.45;
    cursor: pointer;
}

    .terms-row input {
        width: 16px;
        height: 16px;
        margin: 1px 0 0;
        flex-shrink: 0;
        accent-color: #5fcaf2;
    }

    .terms-row a {
        color: #ffffff;
        text-decoration: none;
    }

        .terms-row a:hover {
            color: #ffffff;
            text-decoration: underline;
        }


/* ==========================================================
   BOTÓN CONFIRMAR
========================================================== */

.consulta-button {
    position: relative;
    width: 100%;
    height: 49px;
    margin-top: 4px;
    padding: 0 45px;
    border: 1px solid rgba(95, 202, 242, .30);
    border-radius: 8px;
    background: #176aa6;
    color: #ffffff;
    font-family: inherit;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .3px;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .20);
    transition: transform .15s ease, background .15s ease, box-shadow .15s ease;
}

    .consulta-button:hover {
        transform: translateY(-1px);
        background: #1d79bb;
        box-shadow: 0 10px 24px rgba(0, 0, 0, .24);
    }

    .consulta-button:active {
        transform: translateY(0);
    }

.button-arrow {
    position: absolute;
    top: 50%;
    right: 18px;
    transform: translateY(-53%);
    color: #ffffff;
    font-size: 25px;
    font-weight: 300;
    line-height: 1;
}


/* ==========================================================
   ERROR LOGIN
========================================================== */

.login-error {
    width: 100%;
    margin: 0 0 17px;
    padding: 10px 13px;
    border: 1px solid rgba(255, 102, 119, .35);
    border-radius: 7px;
    background: rgba(139, 28, 45, .20);
    color: #ffb7c0;
    font-size: 12px;
    font-weight: 600;
}


/* ==========================================================
   CARD SECUNDARIA
========================================================== */

.consulta-card2 {
    width: 100%;
    max-width: 840px;
    margin: 0;
    padding: 38px 36px;
    background: linear-gradient( 180deg, rgba(13, 29, 58, .96), rgba(6, 17, 38, .98) );
    border: 1px solid rgba(124, 153, 196, .20);
    border-radius: 16px;
    color: #ffffff;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .25);
}


/* ==========================================================
   DETALLES EVENTO
========================================================== */

.detalles-card {
    position: absolute;
    top: 120px;
    left: 5vw;
    right: 5vw;
    width: auto;
    margin-left: 15%;
    margin-right: 15%;
    padding: 20px 25px;
    color: #ffffff;
    line-height: 1.5;
    border-radius: 10px;
    max-height: calc(100vh - 160px);
    overflow-y: auto;
    overflow-x: hidden;
    scrollbar-width: thin;
    scrollbar-color: #3f6f9f transparent;
}

    .detalles-card h2 {
        margin-top: 0;
        margin-bottom: 15px;
    }

    .detalles-card p {
        margin-top: 0;
        margin-bottom: 18px;
    }

    .detalles-card::-webkit-scrollbar {
        width: 6px;
    }

    .detalles-card::-webkit-scrollbar-track {
        background: transparent;
    }

    .detalles-card::-webkit-scrollbar-thumb {
        background: #3f6f9f;
        border-radius: 10px;
    }


/* ==========================================================
   PROGRAMA
========================================================== */

.programa-page {
    width: 100%;
    margin: 0;
    padding: 0;
}

    .programa-page img {
        display: block;
        width: 100%;
        height: auto;
    }


/* ==========================================================
   EXPOSITORES
========================================================== */

.expositores-page {
    position: relative;
    width: 100%;
    min-height: 100vh;
    padding-top: 120px;
    background: #1d3d72;
    color: #f4f7fb;
    font-family: Arial, Helvetica, sans-serif;
}


/* ==========================================================
   CONTENEDOR EXPOSITORES
========================================================== */

.expositores-container {
    width: min(1380px, 90%);
    margin: 0 auto;
}


/* ==========================================================
   HERO EXPOSITORES
========================================================== */

.expositores-hero {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    align-items: center;
    gap: 48px;
    padding: 34px 0;
}

.expositores-eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
}

    .expositores-eyebrow::before {
        content: "";
        width: 2px;
        height: 20px;
        border-radius: 10px;
        background: #5fcaf2;
    }

.expositores-title {
    margin: 0 0 18px;
    font-size: clamp(48px, 5vw, 76px);
    line-height: .98;
    letter-spacing: -2px;
    font-weight: 800;
}

    .expositores-title span {
        background: linear-gradient( 90deg, #ffffff 0%, #8bd8f5 65%, #b8b4ed 100% );
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
    }

.expositores-title-line {
    width: 170px;
    height: 2px;
    margin-bottom: 24px;
    border-radius: 10px;
    background: linear-gradient( 90deg, #5fcaf2, #748fd3 );
}

.expositores-hero-text {
    max-width: 650px;
    margin: 0;
    color: #ffffff;
    font-size: 17px;
    line-height: 1.6;
}


/* ==========================================================
   CANDADO
========================================================== */

.expositores-hero-graphic {
    position: relative;
    min-height: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.expositores-cyber-grid {
    position: absolute;
    inset: 0;
    opacity: .18;
    background-image: linear-gradient( rgba(75, 142, 220, .10) 1px, transparent 1px ), linear-gradient( 90deg, rgba(75, 142, 220, .10) 1px, transparent 1px );
    background-size: 36px 36px;
    mask-image: radial-gradient( circle, black 12%, transparent 72% );
}

.expositores-lock {
    position: relative;
    width: 120px;
    height: 100px;
    border: 3px solid rgba(76, 190, 235, .85);
    border-radius: 16px;
    box-shadow: 0 0 18px rgba(32, 174, 235, .12), inset 0 0 12px rgba(50, 170, 235, .06);
}

    .expositores-lock::before {
        content: "";
        position: absolute;
        top: -61px;
        left: 25px;
        width: 64px;
        height: 64px;
        border: 3px solid rgba(76, 190, 235, .85);
        border-bottom: 0;
        border-radius: 42px 42px 0 0;
    }

    .expositores-lock::after {
        content: "";
        position: absolute;
        left: 50%;
        top: 34px;
        width: 13px;
        height: 28px;
        transform: translateX(-50%);
        border-radius: 12px;
        background: #5fcaf2;
    }


/* ==========================================================
   GRID EXPOSITORES
========================================================== */

.speakers {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    padding: 0 0 70px;
    align-items: stretch;
}


/* ==========================================================
   CARD EXPOSITOR
========================================================== */

.speaker-card {
    position: relative;
    min-height: 610px;
    padding: 24px 26px;
    border: 1px solid rgba(124, 153, 196, .20);
    border-radius: 16px;
    background: linear-gradient( 180deg, rgba(13, 29, 58, .94), rgba(6, 17, 38, .98) );
    box-shadow: 0 16px 35px rgba(0, 0, 0, .22);
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
    transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

    .speaker-card:hover {
        transform: translateY(-4px);
        border-color: rgba(95, 202, 242, .35);
        box-shadow: 0 20px 42px rgba(0, 0, 0, .28);
    }

    .speaker-card::before {
        content: "";
        position: absolute;
        inset: 0;
        pointer-events: none;
        background: linear-gradient( 180deg, rgba(42, 126, 210, .035), transparent 32% );
    }


/* ==========================================================
   FOTO EXPOSITOR
========================================================== */

.photo-wrap {
    position: relative;
    width: 190px;
    height: 190px;
    flex: 0 0 190px;
    margin-bottom: 18px;
    border-radius: 50%;
    padding: 2px;
    background: linear-gradient( 135deg, #5fcaf2, #667fae 70%, #8c86b7 );
    z-index: 1;
}

.speaker-photo {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center top;
    border-radius: 50%;
    border: 4px solid #0b1832;
}


/* ==========================================================
   NOMBRE EXPOSITOR
========================================================== */

.speaker-name {
    position: relative;
    z-index: 1;
    margin: 0 0 8px;
    text-align: center;
    color: #ffffff;
    font-size: 25px;
    line-height: 1.12;
    font-weight: 750;
    text-transform: uppercase;
    letter-spacing: -.3px;
}


/* ==========================================================
   ROL EXPOSITOR
========================================================== */

.speaker-role {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 26px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
}

.role-icon {
    font-size: 18px;
    opacity: .9;
}

.mini-line {
    width: 74px;
    height: 1px;
    margin: 13px auto 16px;
    background: linear-gradient( 90deg, #5fcaf2, #748fd3 );
}


/* ==========================================================
   DESCRIPCIÓN EXPOSITOR
========================================================== */

.speaker-description-wrapper {
    width: 100%;
}

.speaker-description {
    position: relative;
    z-index: 1;
    width: 100%;
    margin: 0 0 14px;
    color: #ffffff;
    font-size: 14px;
    line-height: 1.55;
    text-align: left;
    flex: 1;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 7;
    overflow: hidden;
}

    .speaker-description.expanded {
        display: block;
        overflow: visible;
    }


/* ==========================================================
   LEER MÁS
========================================================== */

.read-more-btn {
    display: block;
    margin: 8px auto 0;
    padding: 7px 14px;
    border: 1px solid rgba(95, 202, 242, .25);
    border-radius: 7px;
    background: rgba(13, 31, 63, .45);
    color: #ffffff;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: background .2s ease, border-color .2s ease, color .2s ease;
}

    .read-more-btn:hover {
        background: rgba(28, 70, 120, .35);
        border-color: rgba(95, 202, 242, .45);
        color: #ffffff;
    }


/* ==========================================================
   DECORACIÓN INFERIOR
========================================================== */

.bottom-dots {
    height: 70px;
    margin-top: -55px;
    pointer-events: none;
    opacity: .12;
    background-image: radial-gradient( circle, #416f9f 1px, transparent 2px );
    background-size: 28px 28px;
    mask-image: linear-gradient( to top, black, transparent );
}


/* ==========================================================
   EXPOSITORES TABLET
========================================================== */

@media (max-width: 1100px) {

    .speakers {
        grid-template-columns: repeat(2, 1fr);
    }

    .expositores-hero {
        grid-template-columns: 1fr;
    }

    .expositores-hero-graphic {
        display: none;
    }
}


/* ==========================================================
   MOBILE
========================================================== */

@media (max-width: 768px) {

    html,
    body {
        margin: 0;
        padding: 0;
        background-color: #1d3d72;
    }


        /* ======================================================
       FONDOS MOBILE
    ====================================================== */

        body.body-inicio {
            background-image: url('../images/Landing_Estrategia_Nacional_de_Desarrollo_Mobile.jpg');
            background-repeat: no-repeat;
            background-position: top center;
            background-size: 100vw auto;
        }

        body.body-general {
            background-color: #1d3d72;
            background-repeat: no-repeat;
            background-position: top center;
            background-size: 100vw auto;
        }


    /* ======================================================
       HEADER MOBILE
    ====================================================== */

    .main-header {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        padding: 14px 0;
        background: transparent;
    }

    .header-container {
        width: 100%;
        margin: 0;
        padding: 0 6px 0 12px;
        display: flex;
        align-items: center;
        justify-content: flex-end;
    }

    .header-logo {
        display: none;
    }

    .header-nav {
        display: none;
    }

    .header-right {
        width: auto;
        margin-left: auto;
        display: flex;
        align-items: center;
        justify-content: flex-end;
        gap: 8px;
    }

    .header-register {
        margin: 0;
        min-width: unset;
        padding: 7px 14px;
        font-size: 10px;
        line-height: 1;
        flex-shrink: 0;
    }


    /* ======================================================
       HAMBURGUESA
    ====================================================== */

    .mobile-menu-button {
        width: 38px;
        height: 38px;
        margin: 0;
        padding: 8px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 5px;
        flex-shrink: 0;
        border: 1px solid rgba(95, 202, 242, .65);
        border-radius: 50%;
        background: rgba(3, 11, 27, .72);
        cursor: pointer;
        z-index: 1002;
    }

        .mobile-menu-button span {
            display: block;
            width: 18px;
            height: 2px;
            background: #5fcaf2;
            border-radius: 20px;
            transition: transform .25s ease, opacity .25s ease;
        }


    /* ======================================================
       MENU DESPLEGABLE
    ====================================================== */

    .mobile-menu {
        position: absolute;
        top: 65px;
        right: 6px;
        width: 220px;
        padding: 15px;
        display: flex;
        flex-direction: column;
        gap: 5px;
        border: 1px solid rgba(124, 153, 196, .25);
        border-radius: 12px;
        background: rgba(6, 17, 38, .97);
        box-shadow: 0 15px 35px rgba(0, 0, 0, .35);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
        z-index: 1001;
    }

        .mobile-menu.active {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .mobile-menu a {
            display: block;
            padding: 12px 14px;
            border-radius: 7px;
            color: #ffffff;
            text-decoration: none;
            font-size: 12px;
            font-weight: 600;
            transition: background .2s ease, color .2s ease;
        }

            .mobile-menu a:hover {
                color: #5fcaf2;
                background: rgba(95, 202, 242, .07);
            }


    /* ======================================================
       ANIMACIÓN HAMBURGUESA
    ====================================================== */

    .mobile-menu-button.active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .mobile-menu-button.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-button.active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }


    /* ======================================================
       CONTENIDO MOBILE
    ====================================================== */

    .page-wrapper {
        width: 100%;
        min-height: 100vh;
        background: transparent;
    }

        .page-wrapper > main,
        main {
            width: 100%;
            min-width: 0;
        }


    /* ======================================================
       INSCRIPCIÓN MOBILE
    ====================================================== */

    .consulta-page {
        width: 100%;
        min-height: 100vh;
        padding: 100px 16px 30px;
    }

    .body-inicio .consulta-page {
        padding: clamp(420px, 110vw, 510px) 16px 35px;
    }

    .consulta-card,
    .consulta-card2 {
        position: relative;
        top: auto;
        right: auto;
        left: auto;
        width: 100%;
        max-width: 390px;
        margin: 0 auto;
        padding: 27px 21px 30px;
        border-radius: 16px;
        max-height: none;
        overflow: visible;
    }

    .consulta-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 12px;
    }

        .consulta-icon svg {
            width: 25px;
            height: 25px;
        }

    .section-title {
        margin: 0;
        font-size: 20px;
    }

    .consulta-subtitle {
        margin-bottom: 21px;
        font-size: 12px;
    }

    .consulta-form {
        gap: 17px;
    }

    .input-set {
        gap: 8px;
    }

        .input-set input,
        .input-set select,
        .form-control {
            width: 100%;
        }

        .input-set input {
            height: 45px;
        }

    .form-row {
        grid-template-columns: 1fr;
        gap: 17px;
    }

    .participacion-option {
        width: 100%;
    }

    .consulta-button {
        width: 100%;
        height: 47px;
    }

    .consulta-card2 p {
        font-size: .95rem;
        line-height: 1.35;
    }


    /* ======================================================
       DETALLES MOBILE
    ====================================================== */

    .detalles-card {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        width: 100%;
        margin: 0 auto;
        padding: 20px;
        max-height: none;
        overflow: visible;
    }


    /* ======================================================
       EXPOSITORES MOBILE
    ====================================================== */

    .expositores-page {
        padding-top: 100px;
        background: #1d3d72;
    }

    .expositores-hero {
        grid-template-columns: 1fr;
        padding: 24px 0 20px;
    }

    .expositores-hero-graphic {
        display: none;
    }

    .expositores-eyebrow {
        font-size: 13px;
    }

    .expositores-title {
        font-size: 46px;
        line-height: 1;
    }

    .expositores-title-line {
        width: 120px;
    }

    .expositores-hero-text {
        font-size: 15px;
        line-height: 1.55;
    }

    .speakers {
        grid-template-columns: 1fr;
        gap: 16px;
        padding-top: 18px;
    }

    .speaker-card {
        min-height: auto;
        padding: 18px;
        display: grid;
        grid-template-columns: 100px 1fr;
        column-gap: 16px;
        align-items: stretch;
    }

    .photo-wrap {
        width: 100px;
        height: 100px;
        flex-basis: 100px;
        grid-row: 1 / span 2;
        margin: 0;
        align-self: start;
    }

    .speaker-name {
        margin-top: 7px;
        margin-bottom: 7px;
        text-align: left;
        font-size: 18px;
    }

    .speaker-role {
        justify-content: flex-start;
        text-align: left;
        font-size: 13px;
    }

    .mini-line {
        grid-column: 1 / -1;
        width: 100%;
        margin: 16px 0;
        opacity: .45;
    }

    .speaker-description-wrapper {
        grid-column: 1 / -1;
        width: 100%;
        min-width: 0;
    }

    .speaker-description {
        width: 100%;
        margin-bottom: 12px;
        font-size: 13.5px;
        line-height: 1.5;
        -webkit-line-clamp: 6;
    }
}


/* ==========================================================
   MOBILE < 600px
========================================================== */

@media (max-width: 600px) {

    .participacion-options {
        flex-direction: column;
    }

    .participacion-option {
        width: 100%;
    }
}


/* ==========================================================
   MOBILE < 500px
========================================================== */

@media (max-width: 500px) {

    .expositores-container {
        width: 92%;
    }

    .expositores-title {
        font-size: 38px;
    }

    .expositores-hero-text {
        font-size: 14px;
    }

    .speaker-card {
        grid-template-columns: 84px 1fr;
        gap: 13px;
    }

    .photo-wrap {
        width: 84px;
        height: 84px;
    }

    .speaker-name {
        font-size: 16px;
    }

    .speaker-role {
        font-size: 12px;
    }
}


/* ==========================================================
   IPHONE / PANTALLAS MUY ANGOSTAS
========================================================== */

@media (max-width: 390px) {

    .body-inicio .consulta-page {
        padding-top: 460px;
    }
}
