@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Dosis:wght@200;300;400;500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&display=swap');



:root {
    --letra2: 'Roboto', sans-serif;
    --color-blanco: #ffff;
    --letras: 'Dosis', sans-serif;
    --letra: 'Roboto Condensed', sans-serif;
    --fondo: #262626;
}


* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

a {
    text-decoration: none;
}

body {
    border: 0 !important;
    overflow-x: hidden !important;
    max-width: 2200px;
    margin: auto !important;
    background-color: var(--fondo) !important;
}

/* Splash inicial: 3s con pared tipo LEGO y logo flotando al centro */
.splash-screen {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    background: rgba(12, 16, 22, 0.32);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    animation: splashOut 4s forwards;
}

.splash-screen::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 50%;
    /* background: */
    /* radial-gradient(circle at 16px 16px, rgba(255, 255, 255, 0.45) 0 5px, rgba(0, 0, 0, 0) 6px),
        radial-gradient(circle at 48px 16px, rgba(255, 255, 255, 0.45) 0 5px, rgba(0, 0, 0, 0) 6px),
        radial-gradient(circle at 16px 48px, rgba(255, 255, 255, 0.45) 0 5px, rgba(0, 0, 0, 0) 6px),
        radial-gradient(circle at 48px 48px, rgba(255, 255, 255, 0.45) 0 5px, rgba(0, 0, 0, 0) 6px),
        linear-gradient(145deg, #2e79ff 0%, #1f59bc 55%, #184793 100%); */
    background-size: 64px 64px, 64px 64px, 64px 64px, 64px 64px, 100% 100%;
    /* box-shadow: inset -8px 0 0 rgba(255, 255, 255, 0.18), inset -18px 0 30px rgba(0, 0, 0, 0.2); */
    transform: translateX(-120%);
    background-color: transparent;
    animation: legoJoinLeft 1.1s cubic-bezier(0.2, 0.9, 0.25, 1) 0.2s forwards;
}

.splash-screen::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    width: 50%;
    /* background:
        radial-gradient(circle at 16px 16px, rgba(255, 255, 255, 0.45) 0 5px, rgba(0, 0, 0, 0) 6px),
        radial-gradient(circle at 48px 16px, rgba(255, 255, 255, 0.45) 0 5px, rgba(0, 0, 0, 0) 6px),
        radial-gradient(circle at 16px 48px, rgba(255, 255, 255, 0.45) 0 5px, rgba(0, 0, 0, 0) 6px),
        radial-gradient(circle at 48px 48px, rgba(255, 255, 255, 0.45) 0 5px, rgba(0, 0, 0, 0) 6px),
        linear-gradient(145deg, #ffa820 0%, #de7b08 55%, #b36300 100%); */
    background-size: 64px 64px, 64px 64px, 64px 64px, 64px 64px, 100% 100%;
    /* box-shadow: inset 8px 0 0 rgba(255, 255, 255, 0.18), inset 18px 0 30px rgba(0, 0, 0, 0.2); */
    transform: translateX(120%);
    background-color: transparent;
    animation: legoJoinRight 1.1s cubic-bezier(0.2, 0.9, 0.25, 1) 0.2s forwards;
}

.splash-logo-float {
    position: relative;
    z-index: 2;
    width: 100%;
    max-height: 80vh;
    object-fit: contain;
    filter: drop-shadow(0 16px 28px rgba(0, 0, 0, 0.45));
    animation: splashLogoFloat 4s ease-in-out infinite;
}

@keyframes legoJoinLeft {
    0% {
        transform: translateX(-120%);
        opacity: 0;
    }

    60% {
        opacity: 1;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes legoJoinRight {
    0% {
        transform: translateX(120%);
        opacity: 0;
    }

    60% {
        opacity: 1;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes splashLogoFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-18px);
    }
}

@keyframes splashOut {

    0%,
    82% {
        opacity: 1;
        visibility: visible;
    }

    100% {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
    }
}

#mainNavbar {
    position: absolute;
}

.navbar-custom {
    max-width: 2200px;
    margin: 0 auto !important;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 100;
    background: transparent;
    transition: background 0.3s, box-shadow 0.3s;
}

.navbar-custom.scrolled {
    position: fixed !important;
    background: #222222a2 !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.107);
    animation: fadeInDown 0.3s;
    top: 0px;
    backdrop-filter: blur(10px);
}

@keyframes fadeInDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }

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

/* --- Navbar imágenes --- */
.navbar-logo-izq {
    width: 150px;
    height: auto;
    max-height: 70px;
}

.navbar-btn-img {
    height: 50px;
    width: auto;
    max-width: 180px;
    transition: transform 0.2s;
}

.navbar-btn-img:hover {
    transform: scale(1.07);
}

.navbar-logo-der {
    height: 60px;
    width: auto;
    max-width: 160px;
}

/* Centrar y animar imagen central */
.container-header {
    display: flex;
    justify-content: center;
    align-items: end;
    height: 100dvh;
    background-image: url("../imagenes/congreso_2026/header/fondo.png");
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
    padding-bottom: 84px;
}

.img_centro {
    display: block;
    margin: 0 auto;
    max-width: 36vw;
    max-height: 34vh;
    animation: floatY 2s ease-in-out infinite;
}

@keyframes floatY {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-24px);
    }

    100% {
        transform: translateY(0);
    }
}

.carrusel {
    width: 100%;
    margin: 0 auto;
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 10px;
    background-color: #fff;
}

.carrusel-frame {
    background: #ffffff;
    overflow-x: auto;
    overflow-y: hidden;
    flex: 1;
    border-radius: 0;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}

.carrusel-frame::-webkit-scrollbar {
    display: none;
}

.carrusel-track {
    display: flex;
    width: max-content;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
}

.carrusel-item {
    flex: 0 0 300px;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 1px solid #e8edf3;
    padding: 0 14px;
    scroll-snap-align: start;
}

.carrusel-logo {
    width: auto;
    height: auto;
    object-fit: contain;
    filter: saturate(0.95);
}

.carrusel-control {
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 50%;
    background: #16dc66;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    line-height: 1;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.18);
    cursor: pointer;
    flex: 0 0 auto;
    z-index: 2;
    transition: transform 0.2s ease, background 0.2s ease;
}

.carrusel-control:hover {
    transform: scale(1.08);
    background: #14b857;
}

.carrusel-control:active {
    transform: scale(0.96);
}

.carrusel-control span {
    display: block;
    margin-top: -2px;
}

.carrusel-control:focus-visible {
    outline: 3px solid rgba(22, 220, 102, 0.45);
    outline-offset: 2px;
}

.general_col {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 74dvh;
}

.programate {
    background-color: #174DB4;
}

.programate .row {
    padding: 84px 42px !important;
    width: 90% !important;
    margin: 0 auto !important
}

.programate .row .titulo {
    margin-bottom: 34px;
}

.programate .row .titulo img {
    width: 340px;
}

.programate .row .contenido img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.programate .row .ilustracion img {
    width: 100%;
    height: 100%;
    ;
    object-fit: contain;
    animation: floatY 2s ease-in-out infinite;
}

.ejes {
    background-color: #002B5E;
    position: relative;
}

.ejes::after {
    content: "";
    width: 100%;
    height: 30px;
    z-index: 1;
    position: absolute;
    top: 0;
    left: 0;
    background: url("../imagenes/congreso_2026/ejes/top.png") center center / cover no-repeat;
}

.ejes::before {
    content: "";
    width: 100%;
    height: 30px;
    z-index: 1;
    position: absolute;
    bottom: 0;
    left: 0;
    background: url("../imagenes/congreso_2026/ejes/footer.png") center center / cover no-repeat;
}


.ejes .row {
    padding: 84px 42px 0px 42px !important;
}

.ejes .row .titulo {
    margin-bottom: 74px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: max-content;
}

.ejes .row .titulo img {
    width: 520px;
}

.ejes .row .contenido {
    height: max-content;
}

.ejes .row .contenido img {
    width: 100%;
    height: 360px;
    object-fit: contain;
    animation: floatY 2s ease-in-out infinite;
}

.ejes .row .ilustracion {
    height: max-content;
}

.ejes .row .ilustracion img {
    width: 100%;
    height: 430px;
    object-fit: contain;
}

.full-screen-carousel {
    width: 100%;
    height: 100dvh;
    margin: 0;
    padding: 0;
}

.full-screen-carousel .carousel-inner {
    width: 100%;
    height: 100%;
}

.full-screen-carousel .carousel-item {
    width: 100%;
    height: 100%;
}

.full-screen-carousel-img {
    width: 100%;
    height: 100%;
    object-fit: fill;
    object-position: center;
}

.full-screen-carousel .carousel-control-prev,
.full-screen-carousel .carousel-control-next {
    width: 9%;
    opacity: 1;
}

.full-screen-carousel .carousel-control-prev-icon,
.full-screen-carousel .carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
    background-size: 1.45rem 1.45rem;
    border-radius: 999px;
    background-color: rgba(0, 0, 0, 0.48);
    border: 2px solid rgba(255, 255, 255, 0.7);
}

.full-screen-carousel .carousel-control-prev:hover .carousel-control-prev-icon,
.full-screen-carousel .carousel-control-next:hover .carousel-control-next-icon {
    background-color: rgba(0, 0, 0, 0.68);
}

.tarifas {
    background-color: #005f47;
    position: relative;
    /* Quitar bordes laterales externos */
    border-left: none;
    border-right: none;
}

.tarifas-grid-header {
    display: grid;
    grid-template-columns: 0.95fr 0.9fr;
    margin-bottom: 0;
    margin-left: calc(1.05 / (1.05 + 0.95 + 0.9 + 1.55) * 100%);
    width: calc((0.95 + 0.9) / (1.05 + 0.95 + 0.9 + 1.55) * 100%);
}

.tarifas::after {
    content: "";
    width: 100%;
    height: 30px;
    z-index: 1;
    position: absolute;
    top: 0;
    left: 0;
    background: url("../imagenes/congreso_2026/tarifas/top.png") center center / cover no-repeat;
}

.tarifas .row {
    padding: 30px 48px !important;
    width: 90% !important;
    margin: 0 auto !important
}

.tarifas .row .titulo {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: max-content;
    animation: floatY 2s ease-in-out infinite;
}


.tarifas .row .titulo img {
    width: min(100%, 560px);
}


.tarifas-contenido {
    width: min(100%, 1280px);
    margin: 0 auto;
    color: #bcffef;
    font-family: var(--letra2);
}

.tarifas-encabezado-precios {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
    margin-bottom: 4px;
}

.tarifas-logo-congreso {
    width: 170px;
    height: auto;
    object-fit: contain;
}

.tarifas-tabla {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
    margin-top: 2px;
}

.tarifas-tabla col.tarifas-col-categoria {
    width: 23%;
}

.tarifas-tabla col.tarifas-col-pesos {
    width: 19%;
}

.tarifas-tabla col.tarifas-col-dolares {
    width: 19%;
}

.tarifas-tabla col.tarifas-col-incluye {
    width: 39%;
}

.tarifas-tabla th,
.tarifas-tabla td {
    vertical-align: top;
}

.tarifas-tabla thead th {
    padding: 10px 14px 12px;
    border-right: 3px solid #95FCD2;
}

.tarifas-tabla thead th:last-child {
    border-right: none;
}

.tarifas-head-blank {
    background: transparent;
    padding: 0;
    border-right: 3px solid #95FCD2;
}

.tarifas-selector-moneda {
    display: inline-flex;
    align-items: center;
    background-color: #1d3569;
    color: #ffffff;
    border-radius: 4px;
    overflow: hidden;
}

.tarifas-selector-moneda span {
    font-size: 42px;
    font-family: var(--letra);
    font-weight: 700;
    padding: 11px 30px;
    line-height: 1;
}

.tarifas-selector-moneda span+span {
    border-left: 3px solid #95FCD2;
}

.tarifas-categorias,
.tarifas-valores,
.tarifas-incluye {
    padding: 10px 16px;
    border-right: 3px solid #95FCD2;
}

.tarifas-tabla tbody tr {
    height: 78px;
}

.tarifas-categorias {
    padding-left: 10px;
    font-size: 27px;
    font-weight: 700;
    color: #9df8e3;
    line-height: 1.05;
    vertical-align: middle;
}

.tarifas-valores {
    font-size: 20px;
    color: #c6fff1;
    white-space: nowrap;
    text-align: center;
    vertical-align: middle;
}

.tarifas-categorias,
.tarifas-valores,
.tarifas-incluye {
    min-height: 78px;
}

.tarifas-incluye {
    border-right: none;
    padding-left: 18px;
    vertical-align: top;
}

.tarifas-incluye h3 {
    font-size: 38px;
    color: #e3fff8;
    margin-bottom: 4px;
    font-weight: 700;
}

.tarifas-incluye p {
    font-size: 16px;
    line-height: 1.48;
    margin-bottom: 14px;
    color: #d4fff4;
}

.tarifas-separador {
    border: 0;
    border-top: 5px solid #95FCD2;
    margin: 16px 0 26px;
    opacity: 1;
}

.tarifas-descuentos-grid {
    display: grid;
    grid-template-columns: 0.8fr 4.2fr;
    gap: 16px;
}

.tarifas-descuentos-titulo {
    margin: 0;
    font-size: 42px;
    color: #e3fff8;
    font-weight: 700;
}

.tarifas-descuentos-detalle h4 {
    margin: 0 0 4px;
    font-size: 32px;
    color: #d3fff3;
    font-weight: 700;
}

.tarifas-descuentos-detalle p {
    margin: 0 0 16px;
    font-size: 17px;
    line-height: 1.5;
    color: #c7fff0;
}

.tarifas-nota-final {
    margin-top: 26px !important;
    font-size: 34px !important;
    color: #8ef5df !important;
    font-weight: 800;
}

/* --- ESTILOS FIJOS PARA LOS ENCABEZADOS DE MONEDA EN TARIFAS --- */
.tarifas-header-monedas {
    text-align: center;
    font-size: 26px;
    font-family: var(--letra);
    font-weight: 700;
    color: #fff;
    background: #1d3569;
    padding: 10px 0 14px 0;
    border-right: 3px solid #95FCD2;
}

.tarifas-header-monedas:last-child {
    border-right: none;
}

.tarifas-tabla-mobile {
    display: none;
}

.tarifas-tabla-mobile-estructura {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
}

.tarifas-tabla-mobile-estructura th,
.tarifas-tabla-mobile-estructura td {
    border: 3px solid #95FCD2;
    padding: 10px 12px;
    color: #d4fff4;
}

.tarifas-tabla-mobile-estructura th {
    background: #1d3569;
    color: #ffffff;
    font-size: 18px;
    font-family: var(--letra);
    font-weight: 700;
    text-align: center;
}

.tarifas-tabla-mobile-estructura td {
    font-size: 15px;
    line-height: 1.35;
    text-align: center;
}

.tarifas-tabla-mobile-estructura td:first-child {
    text-align: left;
    font-weight: 700;
    color: #9df8e3;
}

.tarifas-incluye-mobile {
    margin-top: 18px;
    padding: 18px 16px 8px;
    border: 3px solid #95FCD2;
    color: #d4fff4;
}

.tarifas-incluye-mobile h3 {
    font-size: 28px;
    color: #e3fff8;
    margin-bottom: 8px;
    font-weight: 700;
}

.tarifas-incluye-mobile p {
    font-size: 15px;
    line-height: 1.45;
    margin-bottom: 12px;
}


.reservas {
    background-color: #2d3f45;
    position: relative;
    overflow: hidden;
}

.reservas::after {
    content: "";
    width: 100%;
    height: 30px;
    z-index: 1;
    position: absolute;
    top: 0;
    left: 0;
    background: url("../imagenes/congreso_2026/reservas/top.png") center center / cover no-repeat;
}

.reservas::before {
    content: "";
    width: 100%;
    height: 30px;
    z-index: 1;
    position: absolute;
    bottom: 0;
    left: 0;
    background: url("../imagenes/congreso_2026/reservas/footer.png") center center / cover no-repeat;
}

.reservas .row {
    padding: 100px 40px !important;
    width: 90% !important;
    margin: 0 auto !important;
}

.reservas .row .titulo {
    margin-bottom: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: max-content;
}

.reservas .row .titulo img {
    width: min(100%, 430px);
}

.reservas-layout {
    width: 100%;
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
    grid-template-areas:
        "panel right"
        "image right";
    gap: 22px 28px;
    align-items: start;
}

.reservas-panel {
    min-width: 0;
}

.tarifas-panel {
    grid-area: panel;
    position: relative;
}

.reservas-panel-derecha {
    grid-area: right;
}

.reservas-ilustracion-wrap {
    grid-area: image;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.reservas-tabla-precios {
    border: 3px solid #ff5b28;
    color: #f4f4f4;
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: rgba(35, 50, 55, 0.86);
}

.reservas-tabla-fila {
    display: contents;
}

.reservas-tabla-celda {
    min-height: 74px;
    padding: 16px 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-right: 2px solid #ff5b28;
    border-bottom: 2px solid #ff5b28;
    font-family: "Agrandir", sans-serif;
}

.reservas-tabla-encabezado .reservas-tabla-celda {
    font-size: 24px;
    font-weight: 800;
    color: #ff6b2d;
    min-height: 64px;
}

.reservas-tabla-encabezado .reservas-tabla-tarifa {
    color: #ffffff;
}

.reservas-tabla-fila:last-child .reservas-tabla-celda {
    border-bottom: 0;
}

.reservas-tabla-celda:nth-child(2n) {
    border-right: 0;
}

.reservas-tabla-tipo {
    font-size: 30px;
    line-height: 1.08;
    font-weight: 500;
}

.reservas-tabla-tarifa {
    font-size: 24px;
    line-height: 1.1;
    font-weight: 500;
}

.reservas-codigo {
    position: absolute;
    top: -22px;
    right: -14px;
    width: 176px;
    z-index: 2;
}

.reservas .row .codigo {
    position: absolute;
    right: 0;
    top: 100px;
    height: max-content;
    width: max-content;
    padding: 0;
    z-index: 3;
}

.reservas .row .codigo img {
    width: 250px;
    display: block;
}

.reservas-beneficios,
.reservas-contacto {
    color: #f6f6f6;
    padding-left: 20px;
}

.reservas-beneficios h3,
.reservas-contacto h3 {
    color: #f2b716;
    font-size: 34px;
    line-height: 1;
    font-weight: 800;
    margin-bottom: 10px;
    font-family: "Agrandir", sans-serif;
}

.reservas-beneficios ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.reservas-beneficios li {
    position: relative;
    padding-left: 22px;
    margin-bottom: 6px;
    font-size: 18px;
    line-height: 1.34;
}

.reservas-beneficios li::before {
    content: "+";
    position: absolute;
    left: 0;
    top: 0;
    color: #f2b716;
    font-weight: 700;
}

.reservas-contacto {
    margin-top: 34px;
    padding-top: 18px;
    border-top: 2px solid #f2b716;
}

.reservas-contacto-bloque {
    margin-bottom: 16px;
    display: grid;
    gap: 3px;
    font-size: 18px;
    line-height: 1.25;
}

.reservas-contacto-bloque strong {
    color: #f2b716;
    font-size: 18px;
}

.reservas-contacto-bloque span {
    display: block;
}

.reservas-contacto-separado {
    padding-top: 14px;
    border-top: 2px solid #ff5b28;
}

.reservas-nota {
    font-size: 12px;
    line-height: 1.45;
    color: #d7d7d7;
    margin-top: 10px;
    margin-bottom: 0;
}

.reservas-ilustracion {
    width: min(100%, 760px);
    display: block;
    margin-left: auto;
    margin-right: auto;
    animation: floatY 2s ease-in-out infinite;
}

.contacto {
    background: #00512f;
    position: relative;
    overflow: hidden;
}

.contacto .row {
    width: 100% !important;
    margin: 0 auto !important;
    padding-top: 50px !important;
}

.contacto_general {
    padding-left: 100px !important;
}

.contacto .row .titulo {
    margin-bottom: 50px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.contacto .row .titulo img {
    width: 600px;
}

.contacto-layout {
    /* width: 100%; */
    display: block;
    padding: 0;
}

.contacto-regionales {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 26px 34px;
}

.contacto-regional-card {
    color: #e9fff4;
}

.contacto-regional-tipo {
    font-size: 20px;
    font-weight: 400;
    line-height: 1;
    margin: 0 0 4px;
    font-family: var(--letra);
}

.contacto-regional-ciudad {
    font-size: 48px;
    line-height: 0.95;
    font-weight: 700;
    margin: 0 0 8px;
    color: #16dc66;
    font-family: var(--letra);
}

.contacto-regional-cobertura {
    margin: 0 0 14px;
    font-size: 20px;
    line-height: 1.08;
    color: #d7eee2;
    font-family: var(--letra);
}

.contacto-persona {
    display: grid;
    gap: 2px;
    margin-bottom: 14px;
    color: #dff8ec;
    font-family: var(--letra);
}

.contacto-persona strong {
    color: #ffffff;
    font-size: 18px;
    line-height: 1.08;
    font-weight: 600;
}

.contacto-persona span {
    display: block;
    font-size: 16px;
    line-height: 1.1;
}

.contacto-ilustracion-wrap {
    position: relative;
    align-self: stretch;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
}

.contacto-ilustracion-img {
    width: 100%;
    height: auto;
    display: block;
}


.footer {
    height: 30dvh;
}

.footer img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 10px;
    right: 10px;
    width: 50px;
    height: 50px;
    background-color: #16dc66;
    border: none;
    border-radius: 50%;
    color: #00512f;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    z-index: 999;
    box-shadow: 0 4px 12px rgba(22, 220, 102, 0.3);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background-color: #14b857;
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(22, 220, 102, 0.5);
}

.scroll-to-top svg {
    width: 24px;
    height: 24px;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* Floating Menu */
.floating-menu {
    position: fixed;
    top: 100px;
    right: 10px;
    z-index: 99;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.floating-menu-toggle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #16dc66 0%, #14b857 100%);
    border: none;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.floating-menu-toggle:hover {
    background: linear-gradient(135deg, #14b857 0%, #12a850 100%);
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.floating-menu-toggle svg {
    width: 24px;
    height: 24px;
    stroke: white;
}

.floating-menu-items {
    display: none;
    flex-direction: column;
    gap: 8px;
    animation: slideInRight 0.3s ease forwards;
}

.floating-menu-items.active {
    display: flex;
}

.floating-menu-item {
    display: block;
    padding: 12px 16px;
    background: white;
    color: #333;
    text-decoration: none;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
    text-align: center;
    border-left: 4px solid #16dc66;
}

.floating-menu-item:hover {
    background: #16dc66;
    color: white;
    transform: translateX(-4px);
    box-shadow: 0 4px 12px rgba(22, 220, 102, 0.3);
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(20px);
    }

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


@media screen and (min-width: 1000px) and (max-width: 1650px) {


    .navbar-logo-izq {
        width: 100px;
    }

    .navbar-btn-img {
        height: 30px;
        max-width: 120px;
    }

    .navbar-logo-der {
        height: 30px;
    }

    .container-header {
        height: 100dvh;
        padding-bottom: 70px;
    }

    .img_centro {
        max-width: 30vw;
        max-height: 30vh;
    }

    .carrusel-item {
        flex: 0 0 200px;
        height: 90px;
        padding: 0px 20px !important;
    }

    .general_col {
        height: 70dvh;
    }

    .programate .row {
        padding: 52px 24px !important;
        width: 90% !important;
        margin: 0 auto !important;
    }

    .programate .row .titulo img {
        width: 300px;
    }

    .programate .row .titulo {
        margin-bottom: 50px;
    }

    .ejes .row .titulo img {
        width: 400px;
    }

    .ejes .row .contenido img,
    .ejes .row .ilustracion img {
        max-height: 250px;
    }

    .full-screen-carousel {
        height: 100dvh;
    }

    .tarifas .row .titulo img {
        width: min(100%, 430px);
    }

    .tarifas-contenido {
        width: min(100%, 1080px);
    }

    .tarifas-logo-congreso {
        width: 132px;
    }

    .tarifas-categorias {
        font-size: 22px;
    }

    .tarifas-valores {
        font-size: 16px;
    }

    .tarifas-incluye h3 {
        font-size: 30px;
    }

    .tarifas-incluye p {
        font-size: 14px;
    }

    .tarifas-descuentos-titulo {
        font-size: 30px;
    }

    .tarifas-descuentos-detalle h4 {
        font-size: 24px;
    }

    .tarifas-descuentos-detalle p {
        font-size: 14px;
    }

    .tarifas-nota-final {
        font-size: 24px !important;
    }

    .reservas .row {
        padding: 100px 56px !important;
    }

    .reservas .row .codigo {
        top: 80px;
    }

    .reservas .row .codigo img {
        width: 200px;
    }

    .reservas .row .titulo img {
        width: min(100%, 390px);
    }

    .reservas-layout {
        gap: 20px 24px;
    }

    .reservas-tabla-celda {
        min-height: 68px;
        padding: 14px 18px;
    }

    .reservas-tabla-encabezado .reservas-tabla-celda {
        font-size: 22px;
    }

    .reservas-tabla-tipo {
        font-size: 24px;
    }

    .reservas-tabla-tarifa {
        font-size: 20px;
    }

    .reservas-codigo {
        width: 156px;
    }

    .reservas-beneficios h3,
    .reservas-contacto h3 {
        font-size: 28px;
    }

    .reservas-beneficios li {
        font-size: 16px;
    }

    .reservas-contacto-bloque {
        font-size: 16px;
    }

    .reservas-contacto-bloque strong {
        font-size: 16px;
    }

    .reservas-ilustracion {
        width: min(100%, 680px);
    }

    .contacto .row {
        width: 100% !important;
        padding-top: 50px !important;
    }

    .contacto .row .titulo img {
        width: min(100%, 320px);
    }

    .contacto-regionales {
        gap: 20px 24px;
    }

    .contacto-regional-tipo {
        font-size: 12px;
    }

    .contacto-regional-ciudad {
        font-size: 30px;
    }

    .contacto-regional-cobertura {
        font-size: 12px;
    }

    .contacto-persona strong,
    .contacto-persona span {
        font-size: 13px;
    }

    .floating-menu {
        top: 80px;
    }

    .floating-menu-item {
        padding: 10px 13px;
        font-size: 10px;
    }

}

@media screen and (min-width: 650px) and (max-width: 990px) {

    #mainNavbar {
        padding: 10px;
    }

    .navbar-logo-izq {
        width: 102px;
    }

    .navbar-btn-img {
        height: 30px;
        max-width: 108px;
    }

    .navbar-logo-der {
        height: 38px;
    }

    .container-header {
        height: 95dvh;
        padding-bottom: 48px;
    }

    .img_centro {
        max-width: 30vw;
        max-height: 30vh;
    }

    .general_col {
        height: auto;
        min-height: 0;
        padding: 0px !important;
    }

    .programate .row,
    .eje .row {
        padding: 52px 24px 10px 24px !important;
        width: 90% !important;
        margin: 0 auto !important;
    }

    .eje .row {
        padding-bottom: 0px !important;
    }

    .programate .row .titulo,
    .eje .row .titulo {
        margin-bottom: 18px;
    }

    .programate .row .titulo img,
    .eje .row .titulo img {
        width: 300px;
    }

    .programate .row .ilustracion img,
    .ejes .row .contenido img,
    .ejes .row .ilustracion img {
        max-height: 300px;
    }

    .ejes .row .ilustracion img {
        object-position: bottom;
        max-height: 200px;
    }

    .programate .row .contenido img {
        max-height: 600px;
        margin-bottom: 40px;
    }

    .full-screen-carousel {
        height: 70dvh;
    }

    .tarifas .row {
        padding: 24px 18px !important;
    }

    .tarifas-contenido {
        width: min(100%, 100%);
    }

    .tarifas-encabezado-precios {
        justify-content: center;
    }

    .tarifas-logo-congreso {
        width: 120px;
    }

    .tarifas-tabla {
        display: none;
    }

    .tarifas-tabla-mobile {
        display: block;
    }

    .tarifas-descuentos-grid {
        grid-template-columns: 1fr;
    }

    .tarifas-descuentos-titulo {
        font-size: 26px;
    }

    .tarifas-descuentos-detalle h4 {
        font-size: 21px;
    }

    .tarifas-descuentos-detalle p {
        font-size: 13px;
    }

    .tarifas-nota-final {
        font-size: 21px !important;
    }

    .reservas .row {
        padding: 30px 18px 48px !important;
        width: 100% !important;
    }

    .reservas-layout {
        grid-template-columns: 1fr;
        grid-template-areas:
            "panel"
            "right"
            "image";
        gap: 20px;
    }

    .reservas-codigo {
        position: static;
        width: 138px;
        margin: 14px auto 0;
        display: block;
    }

    .reservas .row .codigo {
        top: 180px;
    }

    .reservas .row .codigo img {
        width: 130px;
    }

    .reservas-tabla-celda {
        min-height: 60px;
        padding: 12px 16px;
    }

    .reservas-tabla-encabezado .reservas-tabla-celda {
        font-size: 18px;
    }

    .reservas-tabla-tipo {
        font-size: 19px;
    }

    .reservas-tabla-tarifa {
        font-size: 18px;
    }

    .reservas-beneficios,
    .reservas-contacto {
        padding-left: 0;
    }

    .reservas-beneficios h3,
    .reservas-contacto h3 {
        font-size: 24px;
    }

    .reservas-beneficios li {
        font-size: 14px;
    }

    .reservas-contacto-bloque {
        font-size: 14px;
    }

    .reservas-contacto-bloque strong {
        font-size: 15px;
    }

    .reservas-nota {
        font-size: 11px;
    }

    .reservas-ilustracion {
        width: min(100%, 560px);
    }

    .reservas .row .titulo {
        margin-bottom: 130px;
        margin-top: 40px;
    }

    .contacto_general {
        padding: 0% !important;
    }

    .contacto {
        position: relative;
    }

    .contacto::after {
        content: "";
        width: 50%;
        height: 90%;
        z-index: 1;
        position: absolute;
        bottom: 0;
        right: 0;
        background-image: url("../imagenes/congreso_2026/contacto/ilustracion.png");
        background-position: bottom right;
        background-size: contain;
        background-repeat: no-repeat;
    }

    .contacto .row {
        padding: 20px 100px !important;
        width: 100% !important;
    }

    .contacto-layout.col-lg-6.col-12,
    .contacto-ilustracion-wrap.col-lg-6.col-12 {
        padding-left: 0;
        padding-right: 0;
    }

    .contacto .row .titulo {
        justify-content: center;
        margin-bottom: 20px;
    }

    .contacto .row .titulo img {
        width: min(100%, 260px);
    }

    .contacto-layout {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .contacto-regionales {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .contacto-regional-tipo {
        font-size: 16px;
    }

    .contacto-regional-ciudad {
        font-size: 30px;
    }

    .contacto-regional-cobertura {
        font-size: 14px;
    }

    .contacto-persona strong,
    .contacto-persona span {
        font-size: 14px;
    }

    .contacto-ilustracion-wrap {
        display: none;
    }

    .floating-menu {
        top: 80px;
    }

    .floating-menu-item {
        padding: 10px 13px;
        font-size: 10px;
    }


}

@media screen and (min-width: 421px) and (max-width: 650px) {

    #mainNavbar {
        padding: 10px;
    }

    .navbar-logo-izq_,
    .navbar-logo-der_ {
        margin: 0px !important;
    }

    .navbar-logo-izq {
        width: 70px;
    }

    .navbar-btn-img {
        height: 20px;
        max-width: 60px;
    }

    .navbar-logo-der {
        height: 20px;
    }

    .movil_nav-buttons {
        gap: 5px !important;
    }


    .container-header {
        height: 100dvh;
        padding-bottom: 48px;
    }

    .img_centro {
        max-width: 40vw;
        max-height: 40vh;
    }

    .carrusel-item {
        flex: 0 0 100px;
        height: 90px;
        padding: 0px 20px !important;
    }

    .general_col {
        height: auto;
        min-height: 0;
        padding: 0px !important;
    }

    .programate .row {
        padding: 52px 24px 10px 24px !important;
        width: 90% !important;
        margin: 0 auto !important;
    }

    .ejes .row {
        padding: 0px !important;
        padding-top: 50px !important;
    }

    .programate .row .titulo,
    .ejes .row .titulo {
        margin-bottom: 50px;
    }

    .programate .row .titulo img,
    .ejes .row .titulo img {
        width: 90%;
    }

    .programate .row .ilustracion img,
    .ejes .row .ilustracion img {
        max-height: 300px;
    }

    .ejes .row .contenido img {
        width: 70%;
        height: auto;
        margin: auto !important;
        display: block;
    }

    .ejes .row .ilustracion img {
        object-fit: cover;
        object-position: bottom;
        max-height: 200px;
    }

    .programate .row .contenido img {
        max-height: 600px;
        margin-bottom: 40px;
    }

    .full-screen-carousel {
        height: 30dvh;
    }

    .tarifas .row {
        padding: 24px 18px !important;
    }

    .tarifas-contenido {
        width: min(100%, 100%);
    }

    .tarifas-encabezado-precios {
        justify-content: center;
    }

    .tarifas-logo-congreso {
        width: 120px;
    }

    .tarifas-tabla {
        display: none;
    }

    .tarifas-tabla-mobile {
        display: block;
    }

    .tarifas-descuentos-grid {
        grid-template-columns: 1fr;
    }

    .tarifas-descuentos-titulo {
        font-size: 26px;
    }

    .tarifas-descuentos-detalle h4 {
        font-size: 21px;
    }

    .tarifas-descuentos-detalle p {
        font-size: 13px;
    }

    .tarifas-nota-final {
        font-size: 21px !important;
    }

    .reservas .row {
        padding: 30px 18px 48px !important;
        width: 100% !important;
    }

    .reservas-layout {
        grid-template-columns: 1fr;
        grid-template-areas:
            "panel"
            "right"
            "image";
        gap: 20px;
    }

    .reservas-codigo {
        position: static;
        width: 138px;
        margin: 14px auto 0;
        display: block;
    }

    .reservas .row .codigo {
        top: 180px;
    }

    .reservas .row .codigo img {
        width: 130px;
    }

    .reservas-tabla-celda {
        min-height: 60px;
        padding: 12px 16px;
    }

    .reservas-tabla-encabezado .reservas-tabla-celda {
        font-size: 18px;
    }

    .reservas-tabla-tipo {
        font-size: 19px;
    }

    .reservas-tabla-tarifa {
        font-size: 18px;
    }

    .reservas-beneficios,
    .reservas-contacto {
        padding-left: 0;
    }

    .reservas-beneficios h3,
    .reservas-contacto h3 {
        font-size: 24px;
    }

    .reservas-beneficios li {
        font-size: 14px;
    }

    .reservas-contacto-bloque {
        font-size: 14px;
    }

    .reservas-contacto-bloque strong {
        font-size: 15px;
    }

    .reservas-nota {
        font-size: 11px;
    }

    .reservas-ilustracion {
        width: min(100%, 560px);
    }

    .reservas .row .titulo {
        margin-bottom: 130px;
        margin-top: 40px;
    }

    .contacto_general {
        padding: 0% !important;
    }

    .contacto {
        position: relative;
    }

    .contacto::after {
        content: "";
        width: 50%;
        height: 90%;
        z-index: 1;
        position: absolute;
        bottom: 0;
        right: 0;
        background-image: url("../imagenes/congreso_2026/contacto/ilustracion.png");
        background-position: bottom right;
        background-size: contain;
        background-repeat: no-repeat;
    }

    .contacto .row {
        padding: 20px 50px !important;
        width: 100% !important;
    }

    .contacto-layout.col-lg-6.col-12,
    .contacto-ilustracion-wrap.col-lg-6.col-12 {
        padding-left: 0;
        padding-right: 0;
    }

    .contacto .row .titulo {
        justify-content: center;
        margin-bottom: 20px;
    }

    .contacto .row .titulo img {
        width: min(100%, 260px);
    }

    .contacto-layout {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .contacto-regionales {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .contacto-regional-tipo {
        font-size: 16px;
    }

    .contacto-regional-ciudad {
        font-size: 30px;
    }

    .contacto-regional-cobertura {
        font-size: 14px;
    }

    .contacto-persona strong,
    .contacto-persona span {
        font-size: 14px;
    }

    .contacto-ilustracion-wrap {
        display: none;
    }


    .floating-menu {
        top: 70px;
        right: 8px;
    }

    .floating-menu-toggle {
        width: 40px;
        height: 40px;
    }

    .floating-menu-toggle svg {
        width: 20px;
        height: 20px;
    }

    .floating-menu-item {
        padding: 8px 10px;
        font-size: 8px;
    }

}

@media screen and (min-width: 320px) and (max-width: 420px) {

    #mainNavbar {
        padding: 5px;
    }

    .navbar-logo-izq_,
    .navbar-logo-der_ {
        margin: 0px !important;
    }

    .navbar-logo-izq {
        width: 50px;
    }

    .navbar-btn-img {
        height: 15px;
        max-width: 60px;
    }

    .navbar-logo-der {
        height: 15px;
    }

    .movil_nav-buttons {
        gap: 5px !important;
    }

    .container-header {
        height: 100dvh;
        padding-bottom: 48px;
    }

    .img_centro {
        max-width: 40vw;
        max-height: 40vh;
    }

    .carrusel-item {
        flex: 0 0 100px;
        height: 90px;
        padding: 0px 20px !important;
    }

    .general_col {
        height: auto;
        min-height: 0;
        padding: 0px !important;
    }

    .programate .row {
        padding: 52px 24px 10px 24px !important;
        width: 90% !important;
        margin: 0 auto !important;
    }

    .ejes .row {
        padding: 0px !important;
        padding-top: 50px !important;
    }

    .programate .row .titulo,
    .ejes .row .titulo {
        margin-bottom: 50px;
    }

    .programate .row .titulo img,
    .ejes .row .titulo img {
        width: 90%;
    }

    .programate .row .ilustracion img,
    .ejes .row .ilustracion img {
        max-height: 300px;
    }

    .ejes .row .contenido img {
        width: 70%;
        height: auto;
        margin: auto !important;
        display: block;
    }

    .ejes .row .ilustracion img {
        object-fit: cover;
        object-position: bottom;
        max-height: 200px;
    }

    .programate .row .contenido img {
        max-height: 600px;
        margin-bottom: 40px;
    }

    .full-screen-carousel {
        height: 30dvh;
    }

    .tarifas .row {
        padding: 24px 18px !important;
    }

    .tarifas-contenido {
        width: min(100%, 100%);
    }

    .tarifas-encabezado-precios {
        justify-content: center;
    }

    .tarifas-logo-congreso {
        width: 120px;
    }

    .tarifas-tabla {
        display: none;
    }

    .tarifas-tabla-mobile {
        display: block;
    }

    .tarifas-descuentos-grid {
        grid-template-columns: 1fr;
    }

    .tarifas-descuentos-titulo {
        font-size: 26px;
    }

    .tarifas-descuentos-detalle h4 {
        font-size: 21px;
    }

    .tarifas-descuentos-detalle p {
        font-size: 13px;
    }

    .tarifas-nota-final {
        font-size: 21px !important;
    }

    .reservas .row {
        padding: 30px 18px 48px !important;
        width: 100% !important;
    }

    .reservas-layout {
        grid-template-columns: 1fr;
        grid-template-areas:
            "panel"
            "right"
            "image";
        gap: 20px;
    }

    .reservas-codigo {
        position: static;
        width: 138px;
        margin: 14px auto 0;
        display: block;
    }

    .reservas .row .codigo {
        top: 180px;
    }

    .reservas .row .codigo img {
        width: 130px;
    }

    .reservas-tabla-celda {
        min-height: 60px;
        padding: 12px 16px;
    }

    .reservas-tabla-encabezado .reservas-tabla-celda {
        font-size: 18px;
    }

    .reservas-tabla-tipo {
        font-size: 19px;
    }

    .reservas-tabla-tarifa {
        font-size: 18px;
    }

    .reservas-beneficios,
    .reservas-contacto {
        padding-left: 0;
    }

    .reservas-beneficios h3,
    .reservas-contacto h3 {
        font-size: 24px;
    }

    .reservas-beneficios li {
        font-size: 14px;
    }

    .reservas-contacto-bloque {
        font-size: 14px;
    }

    .reservas-contacto-bloque strong {
        font-size: 15px;
    }

    .reservas-nota {
        font-size: 11px;
    }

    .reservas-ilustracion {
        width: min(100%, 560px);
    }

    .reservas .row .titulo {
        margin-bottom: 130px;
        margin-top: 40px;
    }

    .contacto_general {
        padding: 0% !important;
    }

    .contacto {
        position: relative;
    }

    .contacto::after {
        content: "";
        width: 50%;
        height: 90%;
        z-index: 1;
        position: absolute;
        bottom: 0;
        right: 0;
        background-image: url("../imagenes/congreso_2026/contacto/ilustracion.png");
        background-position: bottom right;
        background-size: contain;
        background-repeat: no-repeat;
    }

    .contacto .row {
        padding: 20px 50px !important;
        width: 100% !important;
    }

    .contacto-layout.col-lg-6.col-12,
    .contacto-ilustracion-wrap.col-lg-6.col-12 {
        padding-left: 0;
        padding-right: 0;
    }

    .contacto .row .titulo {
        justify-content: center;
        margin-bottom: 20px;
    }

    .contacto .row .titulo img {
        width: min(100%, 260px);
    }

    .contacto-layout {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .contacto-regionales {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .contacto-regional-tipo {
        font-size: 16px;
    }

    .contacto-regional-ciudad {
        font-size: 30px;
    }

    .contacto-regional-cobertura {
        font-size: 14px;
    }

    .contacto-persona strong,
    .contacto-persona span {
        font-size: 14px;
    }

    .contacto-ilustracion-wrap {
        display: none;
    }

    .floating-menu {
        top: 60px;
        right: 8px;
    }

    .floating-menu-toggle {
        width: 40px;
        height: 40px;
    }

    .floating-menu-toggle svg {
        width: 20px;
        height: 20px;
    }

    .floating-menu-item {
        padding: 8px 10px;
        font-size: 8px;
    }

}


/* Responsive: Tablet 650-990px */
@media (min-width: 650px) and (max-width: 990px) {
    .scroll-to-top {
        bottom: 10px;
        right: 10px;
        width: 45px;
        height: 45px;
    }

    .scroll-to-top svg {
        width: 20px;
        height: 20px;
    }
}

/* Responsive: Small tablet 421-650px */
@media (min-width: 421px) and (max-width: 650px) {
    .scroll-to-top {
        bottom: 10px;
        right: 10px;
        width: 42px;
        height: 42px;
    }

    .scroll-to-top svg {
        width: 18px;
        height: 18px;
    }
}

/* Responsive: Mobile 320-420px */
@media (min-width: 320px) and (max-width: 420px) {
    .scroll-to-top {
        bottom: 10px;
        right: 10px;
        width: 38px;
        height: 38px;
    }

    .scroll-to-top svg {
        width: 16px;
        height: 16px;
    }
}

/* Animate on Scroll - Base styles */
.animate-on-scroll {
    opacity: 0;
}

.animate-on-scroll.animate__animated {
    opacity: 1;
}