@import url('https://fonts.googleapis.com/css2?family=EB+Garamond:wght@400;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Merriweather:ital,wght@1,400&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600&display=swap');

html {
    scroll-behavior: smooth;
}
body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: 'Inter', sans-serif;
    color: black;
    background-image: url(img/1920/bg.png);
    background-size: cover;
    scroll-behavior: smooth;
}


#ic_logo {
        width: 60px;
    }


#nav_oculto{
    display: none;
}
.close-sidebar-button{
    display: none;
}
/* Loader */
#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #ffffff; /* Fondo blanco */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 100000000000000000000000000000000000000000000; /* Asegura que esté por encima de todo */
    overflow: hidden;
    opacity: 1; /* Asegura que esté visible inicialmente */
    transition: opacity 0.5s ease-in-out; /* Transición de opacidad */
}


/* Imagen del barco */
#loader-barco {
    width: 250px; /* Ajusta el tamaño del barco */
 animation: navigate 4s cubic-bezier(0.4, 0.0, 0.2, 1) infinite; /* Movimiento fluido de navegación */
}

/* Animación para simular el movimiento por las olas */
@keyframes navigate {
    0% {
        transform: translateY(0) rotate(0deg);
    }
    20% {
        transform: translateY(-15px) rotate(-1.5deg); /* Subir y girar ligeramente */
    }
    40% {
        transform: translateY(0) rotate(0deg); /* Volver al centro */
    }
    60% {
        transform: translateY(10px) rotate(1.5deg); /* Bajar y girar ligeramente */
    }
    80% {
        transform: translateY(0) rotate(0deg); /* Volver al centro */
    }
    100% {
        transform: translateY(0) rotate(0deg); /* Mantener la posición inicial */
    }
}



/* Estilos para el botón flotante de WhatsApp */
#whatsapp-button {
    position: fixed;
    bottom: 20px; /* Ajusta la distancia desde el fondo */
    right: 20px; /* Ajusta la distancia desde el borde derecho */
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    font-size: 24px;
    height: 80px;
    width: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    transition: background-color 0.3s ease;
    text-decoration: none; /* Elimina el subrayado */
    transition: all 0.5s ease;
    outline: none;
    -webkit-tap-highlight-color: transparent;
}

#whatsapp-button i {
    font-size: 60px;
}

#whatsapp-button:hover {
    background-color: #1ebe5d; /* Color más claro para el hover */
    transform: scale(1.1); /* Efecto de aumento */
}


/* Ajustar el cuadro de diálogo para que esté más a la izquierda */
.whatsapp-tooltip {
    position: absolute;
    bottom: 100%; 
    margin-bottom: 5px;
    right: 0; /* Coloca el cuadro a la izquierda del botón */
    transform: translateX(-10%); /* Desplaza ligeramente hacia la izquierda */
    background-color:  #1ebe5d;
    color: white;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 500;
    white-space: nowrap;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none; /* No afecta los clics */
}

/* Ajustar la flecha para que apunte correctamente */
.whatsapp-tooltip::after {
    content: "";
    position: absolute;
    top: 100%;
    right: 5%; /* Alinea la flecha con el centro del botón */
    transform: translateX(50%);
    border-width: 6px;
    border-style: solid;
    border-color: #25D366 transparent transparent transparent;
}

/* Mostrar el cuadro de diálogo al hacer hover */
#whatsapp-button:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(-10%) translateY(-5px);
}


.whatsapp-notification {
    position: absolute;
    top: 0px; /* Ajusta la posición vertical */
    right: 5px; /* Ajusta la posición horizontal */
    background-color: red; /* Color de fondo de la notificación */
    color: white;
    font-size: 14px; /* Tamaño del número */
    font-weight: bold;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: none; /* Se oculta por defecto */
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2px;
    opacity: 0; /* Comienza invisible */
    transition: opacity 0.1s ease; /* Suaviza la aparición */
}

/* Animación de aparición suave */
.whatsapp-notification.show-notification {
    animation: fadeIn 0.5s forwards, pulse 1s infinite; /* Efecto de aparición y palpitar */
    opacity: 1;
}

/* Animación de "fade in" para hacerla aparecer suavemente */
@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

/* Animación de "palpitar" (escala) */
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2); /* Aumento */
    }
    100% {
        transform: scale(1); /* Vuelve a su tamaño original */
    }
}


.hero {
    height: 100vh; /* Ocupa el 100% de la altura de la pantalla */
    width: 100%; /* Ocupa el 100% del ancho */
    display: flex;
    align-items: center;
    justify-content: center;
    /*background-image: url('img/1920/bg1.png');*/
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    color: white;
    text-align: center;
    flex-direction: row;
}

#sidebar{
    width: calc(360px - 44px);
    height: calc(100%);
    display: flex;
    position: fixed;
    left: 0;
    top: 0;
    padding: 0px 22px;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.60);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
#hero_center{
    width: calc(100% - 360px - 300px);
    height: calc(100% - 160px);
    padding: 80px 150px;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    margin-left: 360px;
    position: relative;
}

#sidebar_1{
    padding-top:20px;
    display: flex;
    flex-direction: row;
    gap: 4px;
    outline: none;
    -webkit-tap-highlight-color: transparent;
}
#logo_1{
    width: auto;
    height: 80px;
    outline: none;
    -webkit-tap-highlight-color: transparent;
}
#logo_2{
    width: auto;
    height: 80px;
    outline: none;
    -webkit-tap-highlight-color: transparent;
}
#sidebar_2 {
    display: flex;
    padding: 4px 0px 40px 0px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
    align-self: stretch;
}

.botones_sidebar {
    display: flex;
    width: calc(100% - 12px);
    height: 24px;
    text-decoration: none;
    padding: 12px 0px 12px 12px;
    align-items: flex-start;
    color: var(--brand-3, #33383C);
    font-family: Inter;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    background: none;
    border: none;
    cursor: pointer;
    align-items: center;
    position: relative;
    justify-content: flex-start;
    outline: none;
    -webkit-tap-highlight-color: transparent;
    gap: 14px;
    transition: transform 0.3s ease, color 0.3s ease, box-shadow 0.3s ease; /* Solo transición en transform y color */
}

#btn_fucat img{
    width: 30px;
    height: 30px;
}

.botones_sidebar svg {
    transition: stroke 0.3s ease; /* Transición solo en el color del icono */
}

.botones_sidebar:hover {
    color:  #892F15;
    transform: scale(1.05); 
    font-weight: 500;
}

.botones_sidebar::after {
    content: ''; /* No necesita texto */
    position: absolute;
    top: 50%;
    right: -8px; /* Ajusta la posición a la derecha */
    width: 6px;
    height: 60%;
    background: linear-gradient(145deg, #0A3D79, #B22800);
    box-shadow: 0 6px 15px rgba(34, 43, 51, 0.6), inset 0 4px 5px rgba(255, 255, 255, 0.4);
    transform: translateY(-50%); 
    opacity: 0; /* Inicialmente oculto */
    transition: all 0.5s ease; /* Animación suave */
}

.botones_sidebar:hover::after {
    opacity: 1; /* Se hace visible al hacer hover */
    right: -4px; /* Ajusta la posición cuando se muestra */
}



.botones_sidebar.active {
    color:  #892F15;
    transform: scale(1.05); 
    font-weight: 500;
}

.botones_sidebar.active::after {
    opacity: 1; /* Se hace visible */
    right: -4px; /* Ajusta la posición cuando se muestra */
}




#inscribite {
    display: flex;
    width: 316px;
    height: 80px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    border-radius: 8px;
    color: var(--M3-sys-light-on-primary, var(--Schemes-On-Primary, #FFF));
    text-align: center;
    font-family: Inter;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: var(--Typescale-Body-Large-Line-Height, 20px); /* 83.333% */
    letter-spacing: var(--Typescale-Body-Large-Letter-Spacing, 0.5px);
    border: none;
    position: relative;
    overflow: hidden; /* Esto es importante para ocultar lo que sale del borde */
    transition: transform 0.3s ease, background-position 0.4s ease;
    background-size: 200% 100%; /* Duplica el tamaño del fondo para el movimiento */
    background-position: 0% 0%; /* Punto inicial del gradiente */
    outline: none;
  
    -webkit-tap-highlight-color: transparent;

    /* 
    background: linear-gradient(145deg, #0A3D79, #61A1D3, #3D7A97); */
    background: linear-gradient(145deg, #0A3D79, #B22800);
    box-shadow: 0 6px 15px rgba(34, 43, 51, 0.6), inset 0 4px 5px rgba(255, 255, 255, 0.4); /* Sombra más intensa */
    transform: translateY(-3px); /* Efecto de elevación */
    
    background: linear-gradient(90deg, #B22800 0%, #641600 100%)
}

#inscribite:hover {
    transform: scale(1.05); /* Agrega un efecto de escala */
}



#sidebar_4{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 22px;
    padding-bottom:20px;
}
#sidebar_4 p{
    color: var(--brand-3, #33383C);
    text-align: center;
    font-family: "EB Garamond";
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%; /* 19.6px */
    margin: 0;
}

#sidebar_4 div button{
    background: none;
    border: none;
    cursor: pointer;
}

#hero_center h4{
    margin: 0;
    color: var(--brand-2, #892F15);
    text-align: center;
    font-family: Inter;
    font-size: 20px;
    font-style: italic;
    font-weight: 700;
    line-height: 126%; /* 25.2px */
}

#contenido_hero_center{
    gap: 17px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: calc(619px - 48px);
    padding: 83px 24px;
    position: relative;
}
#imagen_jovenes_hero{
    position: absolute;
    width: 50%;
    height: auto;
    right: 0;
}

#contenido_hero_center p{
    color: var(--brand-3, #33383C);
    text-align: center;
    font-family: Inter;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: var(--Typescale-Body-Large-Line-Height, 20px); /* 83.333% */
    letter-spacing: var(--Typescale-Body-Large-Letter-Spacing, 0.5px);
    margin: 0;
}
#cuenta-regresiva {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 columnas */
    gap: 10px; /* Espaciado entre los elementos */
    text-align: center;
    font-family: Arial, sans-serif;
    font-size: 20px;
    color: #333;
    width: 60%; /* Ajusta el ancho de la cuenta regresiva */
    margin: 0 auto; /* Centra la cuenta regresiva */
    padding: 15px 35px;
    position: relative; 
    height: 90px;
    justify-content: center;
    align-items: center;
    border: none; /* Elimina los bordes predeterminados */
    border-top: 1px solid var(--brand-3, #33383c9b);
    border-bottom: 1px solid var(--brand-3,  #33383c9b);
}


#imagen-cuenta-regresiva-top-right {
    position: absolute;
    top: 0px; /* Espacio desde la parte superior */
    right: 0px; /* Espacio desde la derecha */
    width: 50px; /* Ajusta el tamaño de la imagen */
    height: auto; /* Mantiene la proporción de la imagen */
}

#imagen-cuenta-regresiva-bottom-right {
    position: absolute;
    bottom: 0px; /* Espacio desde la parte superior */
    right: 0px; /* Espacio desde la derecha */
    width: 50px; /* Ajusta el tamaño de la imagen */
    height: auto; /* Mantiene la proporción de la imagen */
    transform: rotate(90deg); /* Rota la imagen 90 grados */
    transform-origin: center; /* Asegura que la rotación sea alrededor del centro de la imagen */
}

#imagen-cuenta-regresiva-top-left {
    position: absolute;
    top: 0px; /* Espacio desde la parte superior */
    left: 0px; /* Espacio desde la izquierda */
    width: 50px; /* Ajusta el tamaño de la imagen */
    height: auto; /* Mantiene la proporción de la imagen */
    transform: rotate(270deg); /* Rota la imagen 90 grados */
    transform-origin: center; /* Asegura que la rotación sea alrededor del centro de la imagen */
}

#imagen-cuenta-regresiva-bottom-left {
    position: absolute;
    bottom: 0px; /* Espacio desde la parte inferior */
    left: 0px; /* Espacio desde la izquierda */
    width: 50px; /* Ajusta el tamaño de la imagen */
    height: auto; /* Mantiene la proporción de la imagen */
    transform: rotate(180deg); /* Rota la imagen 90 grados */
    transform-origin: center; /* Asegura que la rotación sea alrededor del centro de la imagen */
}

.columna {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.columna span {
    font-size: 32px;
    font-weight: bold;
    color: var(--brand-3, #33383C);
    text-align: center;

    /* Display Small */
    font-family: "EB Garamond";
    font-size: 36px;
    font-style: normal;
    line-height: var(--Typescale-Display-Small-Line-Height, 44px); /* 122.222% */
}

.columna div {
    color: var(--brand-3, #33383C);
    text-align: center;

    /* Headline Small */
    font-family: "EB Garamond";
    font-size: 24px;
    font-style: normal;
    font-weight: bold;
    line-height: var(--Typescale-Headline-Small-Line-Height, 32px); /* 133.333% */
}



#barco_grande {
    position: relative; /* Mantiene el barco en el flujo del documento */
    display: inline-block; /* Asegura que se pueda transformar sin problemas */
    transition: transform 0.1s ease-out; /* Suaviza el movimiento */
}


/*VIVO*/
#vivo{
    height: max-content; 
    width: 100%; 
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    color: white;
    text-align: center;
    flex-direction: row;
    padding-bottom: 100px;
    display: none;
}

.video-container {
    width: calc(100% - 360px - 60px);
    height: calc(100% - 60px);
    padding: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 360px;
    
}
.video-container iframe {
    width: 888px;
    height: 500px;
    border: none;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}




/*FUCAT*/
#fucat{
    height: max-content; /* Ocupa el 100% de la altura de la pantalla */
    width: 100%; /* Ocupa el 100% del ancho */
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    color: white;
    text-align: center;
    flex-direction: row;
}


#general_fucat{
    width: calc(100% - 360px - 200px);
    height: calc(100% - 200px);
    padding: 100px;
    justify-content: space-around;
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-left: 360px;
}
#img_fucat {
    width: 30%;
    height: auto;
}
#izq_fucat{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
    height: 100%;
    width: 60%;
}
#titulo_izq_fucat{
    width: 100%;
    display: flex;
    justify-content: flex-start;
}

#titulo_izq_fucat h3{
   
    margin: 0;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 8px;
    color: var(--brand-3, #33383C);
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 28px; /* 175% */
    letter-spacing: 3.2px;
    text-transform: uppercase;
    width: 100%;
    text-align: left;
}
#contenido_izq_fucat{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    align-self: stretch;
}

#contenido_izq_fucat h2{
    width: 100%;
    margin: 0;
    color: var(--brand-3, #33383C);
    font-family: Inter;
    font-size: 44px;
    font-style: normal;
    font-weight: 600;
    line-height: 126%; /* 55.44px */
    text-align: left;
    font-family: 'Times New Roman', Times, serif;

}

#lema_fucat{
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
   
}
#contenido_izq_fucat h3{
    width: 100%;
    margin: 0;
    color: #B22800;
    font-family: Cormorant;
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-align: left;
    font-style: italic;
}
#contenido_izq_fucat p {
    width: 100%;
    margin: 0;
    color: var(--brand-3, #33383C);
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    text-align: left;
}

#imagenes_que_fucat {
    
    display: flex;
    align-items: center;
    gap: 25px;
    flex-direction: row;
}
#imagenes_que_fucat img{
    width: 96px;
    height: 96px;
    border-radius: 8px;
}








/*CRONOGRAMA*/




#cronograma{
    height: 100vh; /* Ocupa el 100% de la altura de la pantalla */
    width: 100%; /* Ocupa el 100% del ancho */
    display: flex;
    align-items: center;
    justify-content: center;
    background-image:  url('img/1920/bg4.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    color: white;
    text-align: center;
    flex-direction: row;
}

#general_cronograma {
    display: flex;
    width: calc(100% - 360px - 100px);
    height: calc(100% - 200px);
    padding: 100px 50px;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    margin-left: 360px;
}

#general_cronograma h2{
    margin: 0;
    width: calc(100% - 48px);
    padding: 0px 24px;
    text-align: left;
    color: var(--brand-3, #33383C);
    font-family: "EB Garamond";
    font-size: 36px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

#contenido_cronograma{
    width: calc(100% - 48px);
    padding: 24px;
    display: flex;
    justify-content: flex-start;
    align-items: start;
    flex-direction: column;
    display: flex;
    
    flex-direction: column;
    align-items: flex-start;
    gap: 36px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.80);
}

#barra_cronograma{
    display: flex;
    height: 4px;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    flex-shrink: 0;
    align-self: stretch;
    background: linear-gradient(90deg, #B22800 0%, #641600 100%);

    width: 100%;
}


/*
#dias {
    display: flex;
    align-items: center;
    gap: 84px;
    align-self: stretch;
    flex-direction: row;
    width: 100%;
    overflow: hidden; 
    padding-bottom: 20px;
}

.dia {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    background: none;
    border: none;
    cursor: pointer;
    width: max-content;
    min-width: max-content;
}
*/



.carousel-container {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    overflow: hidden;
    padding-bottom: 20px;

    transition: transform 0.3s ease-in-out; /* Desplazamiento suave */
    cursor: grab; 
}

.carousel:active {
    cursor: grabbing;
}


.carousel-wrapper {
    overflow: hidden; /* Ocultar los botones fuera del área visible */
    flex-grow: 1;
    margin: 0 10px;
}

.carousel {
    display: flex;
    transition: transform 0.3s ease-in-out; /* Transición suave entre los slides */
    gap: 84px;
    
}

.carousel-button {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    background: none;
    border: none;
    cursor: pointer;
    min-width: max-content;
    width: 250px;
    outline: none;
    -webkit-tap-highlight-color: transparent;
}

.dia_arriba {
    color: #33383C;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
    margin: 0;
    text-align: left;
    user-select: none;
}

.dia_abajo {
    color: #33383C;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
    margin: 0;
    text-align: left;
    user-select: none;
}

.dia_abajo strong {
    color: #33383C;
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%;
    user-select: none;
}

/* Estado desactivado (gris) */
.carousel-button .dia_arriba,
.carousel-button .dia_abajo,
.carousel-button .dia_abajo strong {
    color: #b0b0b0; /* Gris desactivado */
}


.carousel-button.active .dia_arriba, .carousel-button.active .dia_abajo, .carousel-button.active .dia_abajo strong {
    color: #9e0202;
    font-weight: 600;
}

#body_cronograma{
    width: 80%;
}

.contenido_cada_dia{
    display: none; 
    flex-direction: column;
    gap: 24px;
    width: 100%;
    justify-content: flex-start;
}

.contenido_cada_dia div{
    display: flex;
    flex-direction: column;
    gap: 11px;
    align-items: center;
    justify-content: flex-start;
}

.contenido_cada_dia.active {
    display: flex; /* Mostrar únicamente el día activo */
}

.conferencia{
    margin: 0;
    width: 100%;
    text-align: left;
    color: var(--brand-3, #33383C);

    /* Title Large */
    font-family: "EB Garamond";
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    line-height: var(--Typescale-Title-Large-Line-Height, 28px);
}

.conferencia strong{
    color: var(--brand-3, #33383C);
    font-family: Inter;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: var(--Typescale-Body-Large-Line-Height, 20px); /* 111.111% */
    letter-spacing: var(--Typescale-Body-Large-Letter-Spacing, 0.5px);
}

.speaker{
    margin: 0;
    width: 100%;
    text-align: left;
    color: var(--brand-3, #33383C);

    /* Body Large */
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: var(--Typescale-Body-Large-Line-Height, 20px); /* 125% */
    letter-spacing: var(--Typescale-Body-Large-Letter-Spacing, 0.5px);
    cursor: pointer;
}


.barra_contenido_cada_dia{
    background: #828282;
    width: 80%;
    margin-right: 20%;
}






.contenido_cada_dia {
    margin: 20px;
    font-family: Arial, sans-serif;
}

.cronograma {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
    table-layout: auto; /* Permite que las columnas se ajusten automáticamente */
}

.cronograma th,
.cronograma td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: center;
    vertical-align: middle;
    color: #33383C;
    font-weight: 500;
}

.cronograma th {
    background-color: #f4f4f4;
    font-weight: bold;
    color: #33383C;
}

.cronograma td:nth-child(2):empty {
    background-color: #f9f9f9; /* Colorea celdas vacías */
}

/* Ajusta la primera columna (hora) a un ancho fijo */
.cronograma th:first-child,
.cronograma td:first-child {
    width: 80px; /* Puedes ajustar este valor según sea necesario */
    white-space: nowrap; /* Asegura que el texto no se divida en varias líneas */
}


/*colores celdas*/
.corona{
    height: 30px;
    width: auto;
}
.celda_conferencia{
    background-color: #d4edda;
}
.celda_comidas{
    background-color: #edd4d4;
}
.celda_liturgia{
    background-color: #0075ff14;
}
.celda_misa{
    display: flex;
    flex-direction: row;
    gap: 10px;
    justify-content: center;
    align-items: center;
    background-image: linear-gradient(to right, #bf953f, #fcf6ba, #b38728, #fbf5b7, #aa771c);
    color: white !important;

    color: white !important;
}
    



/*DISERTANTES*/
#disertantes{
    height: 100vh; /* Ocupa el 100% de la altura de la pantalla */
    width: 100%; /* Ocupa el 100% del ancho */
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('img/1920/bg3.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top;
    color: white;
    text-align: center;
    flex-direction: row;
}
.profesion{
    display: none;
}
#general_disertantes{
    width: calc(100% - 360px - 200px);
    height: calc(100% - 200px);
    padding: 100px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    margin-left: 360px;
    gap: 24px;
}


#general_disertantes h2{
    margin: 0;
    width: calc(100% - 48px);
    padding: 0px 24px;
    text-align: left;
    color: var(--brand-3, #33383C);
    font-family: "EB Garamond";
    font-size: 36px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

#imagenes_disertantes{
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    gap: 70px;
}
.marco_disertante{
    display: flex;
    width: 250px;
    padding: 16px 24px;
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
    flex-direction: column;
    justify-content: end;
    align-items: center;
    gap: 10px;
    margin-right: 25px;
    border-radius: 8px;
    background-color: #f5f5f5ae;
    box-shadow: 0 0 20px #acacac8d;
    position: relative;
}
.marco_disertante img{
    width: 100%;
    height: auto;
}

.marco_disertante h5{
    width: 100%;
    text-align: center;
    margin: 0;
    color: #33383C;
    text-align: center;
    font-family: Inter;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: var(--Typescale-Headline-Small-Line-Height, 32px); /* 177.778% */
}

.marco_disertante p{
    width: 100%;
    text-align: center;
    margin: 0;
    color: #33383C;
text-align: center;

/* Body Medium */
font-family: Inter;
font-size: 14px;
font-style: normal;
font-weight: 400;
line-height: var(--Typescale-Body-Medium-Line-Height, 20px); /* 142.857% */
letter-spacing: var(--Typescale-Body-Medium-Letter-Spacing, 0.25px);
}





/*UBICACION*/

#ubicacion{
    height: max-content; /* Ocupa el 100% de la altura de la pantalla */
    width: 100%; /* Ocupa el 100% del ancho */
    display: flex;
    align-items: center;
    justify-content: center;
background-image:  url('img/1920/bg5.png');
    background-size:contain;
    background-repeat: no-repeat;
    background-position:bottom;
    color: white;
    text-align: center;
    flex-direction: row;
}


#general_ubicacion{
    width: calc(100% - 360px - 96px);
    height: calc(100% - 96px);
    padding: 48px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    margin-left: 360px;
    gap: 24px;
}

#general_contacto{
    display: flex;
    padding: 32px 24px;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 30px;
    width: 1000px;
    
}
#general_contacto h2{
    margin: 0;
    color: var(--brand-3, #33383C);
    font-family: "EB Garamond";
    font-size: 36px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-align: left;
    width: 100%;
}
.columnas_contacto{
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    width: 100%;
}
.column_contacto{
    display: flex;
    width: 50%;
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
    flex-shrink: 0;
    align-self: stretch;
}

.column_contacto h3{
    margin: 0;
    color: var(--brand-3, #33383C);
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: var(--Typescale-Body-Large-Line-Height, 20px); /* 125% */
    letter-spacing: var(--Typescale-Body-Large-Letter-Spacing, 0.5px);
}
.column_contacto p{
    margin: 0;
    color: var(--brand-3, #33383C);

    /* Body Large */
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: var(--Typescale-Body-Large-Line-Height, 20px); /* 125% */
    letter-spacing: var(--Typescale-Body-Large-Letter-Spacing, 0.5px);
}
.column_contacto button{
    cursor: pointer;
    border: none;
    background: none;
    gap: 10px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    color: var(--brand-3, #33383C);
    padding-top: 12px;
    padding-bottom: 12px;

    /* Body Large */
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: var(--Typescale-Body-Large-Line-Height, 20px); /* 125% */
    letter-spacing: var(--Typescale-Body-Large-Letter-Spacing, 0.5px); 
    transition: all 0.3s ease; 
}
.column_contacto button i{
    font-size: 32px;
    color: #33383C;
    transition: all 0.3s ease; 
}

.column_contacto button:hover i{
    color: #25D366;
}

#formu_contacto{
    display: flex;
    padding: 12px;
    justify-content: center;
    align-items: center;
    border-radius:8px;
    border: 1px solid #2C2C2C;
    background: var(--brand-3, #33383C);
    font-style: normal;
    line-height: 100%; 
    width: 100%;
    outline: none;
    -webkit-tap-highlight-color: transparent;
    color: #f5f5f5;
    border: none;
    position: relative;
    overflow: hidden; /* Esto es importante para ocultar lo que sale del borde */
    transition: transform 0.3s ease, background-position 0.4s ease;
    background-size: 200% 100%; /* Duplica el tamaño del fondo para el movimiento */
    background-position: 0% 0%; /* Punto inicial del gradiente */

    /*background: linear-gradient(145deg, #61A1D3, #0A3D79, #3D7A97);*/
    background: linear-gradient(145deg, #0A3D79, #B22800);
    transform: translateY(-3px); /* Efecto de elevación */
      text-transform: uppercase;
      background: linear-gradient(90deg, #B22800 0%, #641600 100%)
}

#formu_contacto:hover {

    transform: scale(1.05); /* Agrega un efecto de escala */
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
}




#general_mapa{
    display: flex;
    padding: 0px 24px;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    width: 1000px;
    
}

#titulo_mapa ,#titulo_mapa_lugar{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    width: 100%;
   
}
#titulo_mapa_lugar{
    align-items: start;
    gap: 8px !important;
}
#titulo_mapa h2{
    width: 100%;
    margin: 0;
    color: var(--brand-3, #33383C);
    font-family: "EB Garamond";
    font-size: 36px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-align: left;
}
#titulo_mapa p{
    color: var(--brand-3, #33383C);
    margin: 0;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    text-align: left;
    width: 100%;
    font-weight: 400;
    line-height: var(--Typescale-Body-Large-Line-Height, 20px); /* 125% */
    letter-spacing: var(--Typescale-Body-Large-Letter-Spacing, 0.5px);
}

#general_mapa iframe{
    height: 424px;
    width: 100%;
    border-radius: 8px;
    
}


#general_mapa_lugar{
    display: flex;
    justify-content: flex-start;
    width: 1000px;
    padding: 0px 24px;
    flex-direction: column;
    align-items:start;
    gap: 30px;
}
#titulo_mapa_lugar h2{
    width: 100%;
    margin: 0;
    color: var(--brand-3, #33383C);
    font-family: "EB Garamond";
    font-size: 36px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-align: left;
}
#mapa_lugar{
   height: 424px;
}
#descargar_mapa{
    cursor: pointer;
    outline: none;
    border: none;
    border-radius: 8px;
    background-color: #33383C;
    color: #F5F5F5;
    font-size: 14px;
    font-weight: 400;
    padding: 12px;
    display: flex;
    flex-direction: row;
    gap: 8px;
    justify-content: center;
    align-items: center;

}

/*DONACIONES*/
#donaciones{
    height: 100vh; /* Ocupa el 100% de la altura de la pantalla */
    width: 100%; /* Ocupa el 100% del ancho */
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('img/bg-donaciones-1440.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top;
    color: white;
    text-align: center;
    flex-direction: row;
}

#general_donaciones {
    display: flex;
    width: calc(100% - 360px - 100px);
    height: calc(100% - 200px);
    padding: 100px 50px;
    flex-direction: column;
    align-items: center;
    gap: 49px;
    margin-left: 360px;
    justify-content: center;
}


#general_donaciones h4{
    width: 100%;
    text-align: left;
    margin: 0;

    color: #000;
    text-align: center;
    font-family: "EB Garamond";
    font-size: 28px;
    font-style: italic;
    font-weight: 600;
    line-height: var(--Typescale-Headline-Medium-Line-Height, 36px); /* 128.571% */
}

#organiza{
    width: calc(1000px - 58px); 
    padding: 58px;
    height: 300px;
    flex-shrink: 0;
    border-radius: 15px;
    background-image: url(img/marco_rojo.png);
    background-size: cover;
}

#organiza_legion{
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 30px;
    height: 120px;
}

#organiza_legion img{
    height: 120px;
    width: auto;
}
#organiza_legion div{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 10px
}

#organiza_legion div p{
    margin: 0;
    width: 100%;
    text-align: left;
    color: var(--brand-3, #33383C);

    /* Title Large */
    font-family: "EB Garamond";
    font-size: 26px;
    font-style: normal;
    font-weight: 400;
    line-height: var(--Typescale-Title-Large-Line-Height, 28px); /* 127.273% */
}

#organiza_legion div h4{
    margin: 0;
    width: 100%;
    text-align: left;
    color: var(--brand-3, #33383C);
    font-family: Cormorant;
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}


#cvu{
    display: flex;
    width: calc(1000px - 58px); 
    padding: 58px;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 8px;
    border-radius: 8px;
    background: #FFF;
}

#dona{
    margin: 0;
    width: 60%;
    text-align: left;
    color: var(--brand-3, #33383C);
    font-family: Inter;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: var(--Typescale-Body-Large-Line-Height, 20px); /* 111.111% */
    letter-spacing: var(--Typescale-Body-Large-Letter-Spacing, 0.5px);
}

#alias{
    margin: 0;
    width: 100%;
    text-align: left;
    color: var(--brand-3, #33383C);
    font-family: Inter;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: var(--Typescale-Title-Large-Line-Height, 28px); /* 140% */
}





#div_banner_fogon{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
#banner_fogon{
    width: 100%;
}

#div_banner_fogon2{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
#banner_fogon2{
    width: 100%;
}



@media (min-width: 1201px) and (max-width: 1919px){
    /*LOADER*/
    #loader-barco {
        width: 125px;
        animation: navigate 3s infinite;
    }
    /*WHATSAPP*/
    #whatsapp-button {
        height: 55px;
        width: 55px;
    }
    #whatsapp-button i {
        font-size: 40px;
    }
    .whatsapp-notification {   
        top: 2px;
        right: 2px;
        font-size: 10px;
        width: 12px;
        height: 12px;
    }
    .whatsapp-tooltip {
        position: absolute;
        bottom: 100%;
        margin-bottom: 7px;
        right: 0px;
        transform: translateX(-10%);
        background-color: #1ebe5d;
        color: white;
        padding: 8px 12px;
        border-radius: 8px;
        font-size: 16px;
        font-weight: 500;
        white-space: nowrap;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
        /* opacity: 0; */
        /* visibility: hidden; */
        transition: opacity 0.3s ease, transform 0.3s ease;
        pointer-events: none;
    }
    /*SIDEBAR*/
    #sidebar {
        width: calc(300px - 44px);
    }
    #sidebar_1 {
        gap: 8px;
        width:100%;
        
    }
    #logo_1 {
        height: 40px;
    }
    #logo_2 {
        height: 40px;
    }
    #inscribite {
        width: 250px;
        height: 60px;
        font-size: 20px;
       
    }
    .botones_sidebar {
        font-size: 16px;
        gap: 8px;
        height: 16px;
        padding: 8px 0px 8px 8px;
    }

    /*HERO*/
    #hero_center {
        width: calc(100% - 300px - 108px);
        height: calc(100% - 96px);
        padding: 48px 54px;
        margin-left: 300px;
        margin-left: 300px;
    }
    
    #contenido_hero_center {
        gap: 10px;
        width: calc(450px - 48px);
        padding: 48px 0px;
    }

    #barco_grande {
        width: 200px;
    }
    #fucat_desc{
        width: 200px;
    }
    #ic_logo{
        width: 40px;
    }

    #contenido_hero_center p {
        font-size: 16px;
        line-height: var(--Typescale-Body-Large-Line-Height, 16px);
    }
    #cuenta-regresiva {
        padding: 5px 30px;
        height: 80px;
    }
    /*QUE ES FUCAT*/
    #fucat {
    height: max-content;
        padding-bottom:100px;
    }
  

    #general_fucat , .video-container  {
        width: calc(100% - 300px - 64px);
        height: calc(100% - 96px);
        padding: 48px 32px;
        margin-left: 300px;
    }
    #img_fucat {
        border-radius: 16px;
        height: auto;
        width:30%
    }
    #izq_fucat {
        gap: 20px;
        width: 60%;
    }
   
    #contenido_izq_fucat h2 {
        font-size: 30px;
    }

#contenido_izq_fucat h3 {
    width: 100%;
    margin: 0;
    color: #B22800;
    font-family: Cormorant;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-align: left;
}






    /*CRONOGRAMA*/
    #body_cronograma {
        width: 80%;
    }
      #cronograma {
         height: max-content;
        padding-bottom:100px;
    }
    #general_cronograma {
        width: calc(100% - 300px - 48px);
        height: calc(100% - 72px);
        padding: 36px 24px;
        margin-left: 300px;
    }
    #contenido_cronograma {
        gap: 10px;
    }
    .carousel {
        gap: 30px;
    }
    .dia_abajo strong {
        font-size: 24px;
    }


    .carousel-container {
        padding-bottom: 8px;
    }
    .carousel-button {
        gap: 0px;
    }


    .conferencia {
        font-size: 18px;
        line-height: var(--Typescale-Title-Large-Line-Height, 20px);
    }
    .contenido_cada_dia {
        gap: 18px;
    }



    /*DISERTANTES*/
    #disertantes {
         height: max-content;
        padding-bottom:100px;
    }
  
    #general_disertantes {
        width: calc(100% - 300px - 96px);
        height: calc(100% - 64px);
        padding: 32px 48px;
        margin-left: 300px;
    }
    #imagenes_disertantes {
        gap: 20px;
    }
    .marco_disertante {
        width: 225px;
        margin-right: 0px;
        padding-top: 5px;
        gap: 4px;
        height: 250px;
    }
    .marco_disertante h5 {
        font-size: 12px;
        line-height: 15px;
        width: 68%;
    }
    .marco_disertante {
        width: 145px;
        height: 200px;
    }
    




    /*UBICACION Y CONTACTO*/
      #ubicacion, #donaciones {
         height: max-content;
        padding-bottom:100px;
    }
    #general_ubicacion {
        width: calc(100% - 300px - 48px);
        height: calc(100% - 48px);
        padding:24px;
        margin-left: 300px;
    }
    #general_contacto {
        padding: 16px;
        gap: 25px;
        width: calc(900px - 32px);
    }

    #general_mapa {
        padding: 24px;
        gap: 10px;
        width: calc(900px - 48px);
    }
    #general_mapa iframe {
        height: 300px;
        width: 100%;
        border-radius: 8px;
    }

    #general_mapa_lugar{
        padding: 24px;
        gap: 10px;
        width: calc(900px - 48px);
    }
    #titulo_mapa_lugar h2{
        width: 100%;
        margin: 0;
        color: var(--brand-3, #33383C);
        font-family: "EB Garamond";
        font-size: 36px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        text-align: left;
    }
    #mapa_lugar{
        height: 300px;
    }
    .column_contacto {
        gap: 10px;
    }

    #formu_contacto, .column_contacto button {
        padding: 4px
    }


    /*DONACIONES*/
    #general_donaciones {
        width: calc(100% - 300px - 64px);
        height: calc(100% - 96px);
        padding: 48px 32px;
        margin-left: 300px;
        gap: 40px;
    }
    #organiza {
        width: calc(800px - 48px);
        padding: 24px;
        height: 200px;
    }

    #cvu {
        width: calc(800px - 48px);
        padding: 24px;
        height: max-content;
    }

    #organiza_legion div h4 {
        font-size: 32px;
    }


    #dona {
        font-size: 16px;
        line-height: var(--Typescale-Body-Large-Line-Height, 18px);
    }

    #alias {
        font-size: 18px;
        line-height: var(--Typescale-Title-Large-Line-Height, 22px);
    }

    #general_donaciones h4 {
        font-size: 22px;
        line-height: var(--Typescale-Headline-Medium-Line-Height, 24px);
    }
    
}




@media (min-width: 921px) and (max-width: 1200px){
    /*LOADER*/
    #loader-barco {
        width: 125px;
        animation: navigate 3s infinite;
    }
    /*WHATSAPP*/
    #whatsapp-button {
        height: 45px;
        width: 45px;
    }
    #whatsapp-button i {
        font-size: 30px;
    }
    .whatsapp-notification {
        top: 0px;
        right: 2px;
        font-size: 8px;
        width: 10px;
        height: 10px;
    }
    .whatsapp-tooltip {
        position: absolute;
        bottom: 100%;
        margin-bottom: 7px;
        right: 0px;
        transform: translateX(-10%);
        background-color: #1ebe5d;
        color: white;
        padding: 8px 8px;
        border-radius: 8px;
        font-size: 13px;
        font-weight: 500;
        white-space: nowrap;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
        /* opacity: 0; */
        /* visibility: hidden; */
        transition: opacity 0.3s ease, transform 0.3s ease;
        pointer-events: none;
    }
    /*SIDEBAR*/
    #sidebar {
        width: calc(300px - 44px);
    }
    #sidebar_1 {
        gap: 8px;
    }
    #logo_1 {
        height: 60px;
    }
    #logo_2 {
        height: 60px;
    }
    #inscribite {
        width: 250px;
        height: 60px;
        font-size: 20px;
       
    }
    .botones_sidebar {
        font-size: 18px;
        gap: 8px;
        padding: 5px;
    }


    /*HERO*/
    #hero_center {
        width: calc(100% - 300px - 108px);
        height: calc(100% - 96px);
        padding: 48px 54px;
        margin-left: 300px;
        margin-left: 300px;
    }
    
    #contenido_hero_center {
        gap: 10px;
        width: calc(450px - 48px);
        padding: 48px 0px;
        z-index: 2;
    }

    #barco_grande {
        width: 180px;
    }
    #fucat_desc{
        width: 180px;
    }
    #ic_logo{
        width: 30px;
    }

    #contenido_hero_center p {
        font-size: 16px;
        line-height: var(--Typescale-Body-Large-Line-Height, 16px);
    }
    #cuenta-regresiva {
        padding: 5px 30px;
    }
    #imagen_jovenes_hero {
       z-index:1;
       opacity:0.2;
    }

    .video-container iframe {
        width: 533px;
        height: 300px;
    }
    /*QUE ES FUCAT*/
    #fucat {
    height: max-content;
        padding-bottom:100px;
    }
    #general_fucat , .video-container  {
        width: calc(100% - 300px - 40px);
        height: calc(100% - 40px);
        padding: 20px;
        margin-left: 300px;
        flex-direction: column;
        gap: 30px;
    }
    #img_fucat {
        border-radius: 16px;
        height: 150px;
        order: 1;
        width: 250px;
        object-fit: cover;
        display:none;
    }
    #izq_fucat {
        gap: 20px;
        width: 420px;
        order: 2;
        width: 100%;
    }
   
    #contenido_izq_fucat {
        gap: 15px;
    }

    #contenido_izq_fucat h2 {
        font-size: 22px;
    }

    #contenido_izq_fucat h3 {
        font-size: 24px;
    }


    #contenido_izq_fucat p {
        line-height: 28px;
    }







    /*CRONOGRAMA*/
    #body_cronograma {
        width: 100%;
    }
      #cronograma {
         height: max-content;
        padding-bottom:100px;
    }
    #general_cronograma {
        width: calc(100% - 300px - 48px);
        height: calc(100% - 72px);
        padding: 36px 24px;
        margin-left: 300px;
    }
    #contenido_cronograma {
        gap: 10px;
    }
    .carousel {
        gap: 30px;
    }
    .dia_arriba{
        font-size: 12px;
    }
    .dia_abajo strong {
        font-size: 20px;
    }


    .carousel-container {
        padding-bottom: 8px;
    }
    .carousel-button {
        gap: 0px;
    }


    .conferencia {
        font-size: 18px;
        line-height: var(--Typescale-Title-Large-Line-Height, 20px);
    }
    .contenido_cada_dia {
        gap: 18px;
    }



    /*DISERTANTES*/
      #disertantes {
         height: max-content;
        padding-bottom:100px;
    }
    #general_disertantes {
        width: calc(100% - 300px - 96px);
        height: calc(100% - 64px);
        padding: 32px 48px;
        margin-left: 300px;
    }
    #imagenes_disertantes {
        gap: 20px;
        justify-content: center;
    }
    .marco_disertante {
        width: 200px;
        margin-right: 0px;
        padding-top: 5px;
        gap: 4px;
        height: 140px;
    }
    .marco_disertante h5{
        font-size: 14px;
        line-height: 16px;
        width: 60%;
    }

    .marco_disertante img {
        width: 100px;
    }

    #general_disertantes h2 {
        text-align: center;
    }




    /*UBICACION Y CONTACTO*/
    #ubicacion, #donaciones {
         height: max-content;
        padding-bottom:100px;
    }
    #general_ubicacion {
        width: calc(100% - 300px - 48px);
        height: calc(100% - 48px);
        padding:24px;
        margin-left: 300px;
    }
    #general_contacto {
        padding: 16px;
        gap: 10px;
        width: calc(600px - 32px);
    }

    #general_mapa {
        padding: 24px;
        gap: 10px;
        width: calc(600px - 48px);
    }
    #general_mapa iframe {
        height: 300px;
        width: 100%;
        border-radius: 8px;
    }


    #general_mapa_lugar{
      padding: 24px;
        gap: 10px;
        width: calc(600px - 48px);
    }
    #titulo_mapa_lugar h2{
        width: 100%;
        margin: 0;
        color: var(--brand-3, #33383C);
        font-family: "EB Garamond";
        font-size: 36px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        text-align: left;
    }
    #mapa_lugar{
        height: 250px;
    }














    .column_contacto {
        gap: 10px;
    }

    #formu_contacto, .column_contacto button {
        padding: 4px
    }


    /*DONACIONES*/
    #general_donaciones {
        width: calc(100% - 300px - 64px);
        height: calc(100% - 96px);
        padding: 48px 32px;
        margin-left: 300px;
        gap: 40px;
    }
    #organiza {
        width: calc(600px - 48px);
        padding: 24px;
        height: 180px;
    }

    #cvu {
        width: calc(600px - 48px);
        padding: 24px;
        height: max-content;
    }

    #organiza_legion div h4 {
        font-size: 32px;
    }


    #dona {
        font-size: 16px;
        line-height: var(--Typescale-Body-Large-Line-Height, 18px);
    }

    #alias {
        font-size: 18px;
        line-height: var(--Typescale-Title-Large-Line-Height, 22px);
    }

    #general_donaciones h4 {
        font-size: 22px;
        line-height: var(--Typescale-Headline-Medium-Line-Height, 24px);
    }
    
}



@media (min-width: 769px) and (max-width: 920px){
    .hero {
    height: max-content;
        
    }
   
/*LOADER*/
#loader-barco {
    width: 125px;
    animation: navigate 3s infinite;
}
/*WHATSAPP*/
#whatsapp-button {
    height: 45px;
    width: 45px;
}
#whatsapp-button i {
    font-size: 30px;
}
.whatsapp-notification {
    top: 0px;
    right: 2px;
    font-size: 8px;
    width: 10px;
    height: 10px;
}
.whatsapp-tooltip {
    position: absolute;
    bottom: 100%;
    margin-bottom: 7px;
    right: 0px;
    transform: translateX(-10%);
    background-color: #1ebe5d;
    color: white;
    padding: 8px 8px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    /* opacity: 0; */
    /* visibility: hidden; */
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
}
/*SIDEBAR*/


#nav_oculto{
    display: flex;
    justify-content: center;
    align-items: center;
    height: calc(80px - 20px);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 10px;
    background: rgba(255, 255, 255, 0.60);
box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.05);
z-index: 10000;
transition: transform 0.3s ease;

}
#nav_oculto.hidden {
    transform: translateY(-80px); /* Aparece en su posición original */
}
#nav_oculto img{
    height: 100%;
    width: auto;
  
    
}

.hamburger-button {
    background: none;
    color: #33383C; /* Color de fondo del botón */
    border: none; /* Sin bordes */
    border-radius: 5px; /* Bordes redondeados */
    padding: 10px 15px; /* Espaciado interno */
    cursor: pointer; /* Cambiar el cursor a mano */
    font-size: 20px; /* Tamaño del ícono */
    display: flex; /* Alinear el contenido */
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease, transform 0.2s ease;
    position: absolute;
    left: 24px;
    outline: none; /* Elimina el contorno estándar */
    -webkit-tap-highlight-color: transparent; 
    z-index: 11111111111111111122;
    
}


.hamburger-button:active {
    transform: scale(0.95); /* Efecto de clic */
}

.close-sidebar-button {
    display: flex;
    background: none;
    color: #33383C;
    border: none;
    border-radius: 5px;
    padding: 10px 15px;
    cursor: pointer;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: end;
    transition: background-color 0.3s ease, transform 0.2s ease;
    outline: none;
    -webkit-tap-highlight-color: transparent;
    position: absolute;
    right: 10px;
    top: 20px;
    z-index: 11111111111111111122;
}

  #sidebar {
        width: calc(280px - 20px);
        transition: transform 0.3s ease; /* Animación suave */
        transform: translateX(-280px); /* Oculto a la izquierda */
        z-index: 111111111111111111;
        padding-left: 10px;
        padding-right: 10px;
        padding-bottom:0;
        padding-top:0;
        top: 0;
        height: calc(100%);
        background: rgba(255, 255, 255, 0.90);
    }
#sidebar.visible {
    transform: translateX(0); /* Aparece en su posición original */
}
#sidebar_1 {
    gap: 8px;
    padding-top: 20px;
    width: 100%;
}
   #sidebar_4{
        padding-bottom:20px;
    }
#logo_1 {
    height: 50px;
}
#logo_2 {
    height: 50px;
}
#inscribite {
    width: 220px;
    height: 50px;
    font-size: 16px;
}
.botones_sidebar {
    font-size: 16px;
    gap: 8px;
}


/*HERO*/
#hero_center {
    width: calc(100% - 108px);
    height: calc(100% - 96px - 80px);
    margin-top: 80px;
    padding: 48px 54px;
    margin-left: 0px;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

#contenido_hero_center {
    gap: 10px;
    width: calc(100% - 48px);
    padding: 48px 0px;
    z-index: 2;
}

#barco_grande {
    width: 250px;
}
#fucat_desc{
    width: 250px;
}
#ic_logo{
    width: 50px;
}

#contenido_hero_center p {
    font-size: 16px;
    line-height: var(--Typescale-Body-Large-Line-Height, 16px);
}
#cuenta-regresiva {
    padding: 5px 30px;
    width: 50%;
}
#imagen_jovenes_hero {
    position: absolute;
    width: 100%;
    height: auto;
    right: -22%;
    z-index: 1;
    opacity: 0.2;
}

.video-container iframe {
    width: 533px;
    height: 300px;
}
/*QUE ES FUCAT*/
 #fucat {
    height: max-content;
    }
#general_fucat , .video-container  {
    width: calc(100% - 40px);
    height: calc(100% - 40px - 80px);
    padding: 20px;
    margin-left: 0px;
    flex-direction: column;
    gap: 30px;
    margin-top: 80px;
    justify-content: center;
}
#img_fucat {
    border-radius: 16px;
    height: 150px;
    order: 1;
    width: 30%;
    object-fit: cover;
}
#izq_fucat {
    gap: 20px;
    width: 420px;
    order: 2;
    width: 100%;
    height: max-content;
}

#contenido_izq_fucat {
    gap: 15px;
}

#titulo_izq_fucat h3 {
    text-align: center;
    justify-content: center;
}


#contenido_izq_fucat h2 {
    font-size: 22px;
    text-align: center;
}

#contenido_izq_fucat h3 {
    font-size: 24px;
    text-align: center;
}


#contenido_izq_fucat p {
    line-height: 28px;
    text-align: center;
}

#imagenes_que_fucat {
 justify-content: center;
 width: 100%;
}






/*CRONOGRAMA*/
#body_cronograma {
    width: 100%;
}
  #cronograma {
         height: max-content;
        padding-bottom:100px;
    }
#general_cronograma {
    width: calc(100% - 48px);
    height: calc(100% - 72px - 80px);
    padding: 36px 24px;
    margin-left: 0px;
    margin-top: 80px;
}
#contenido_cronograma {
    gap: 10px;
}
.carousel {
    gap: 30px;
}
.dia_arriba{
    font-size: 12px;
}
.dia_abajo strong {
    font-size: 20px;
}


.carousel-container {
    padding-bottom: 8px;
}
.carousel-button {
    gap: 0px;
}


.conferencia {
    font-size: 18px;
    line-height: var(--Typescale-Title-Large-Line-Height, 20px);
}
.contenido_cada_dia {
    gap: 18px;
}



/*DISERTANTES*/
  #disertantes {
         height: max-content;
        padding-bottom:100px;
    }
#general_disertantes {
    width: calc(100% - 96px);
    height: calc(100% - 64px - 80px);
    padding: 32px 48px;
    margin-left: 0px;
    margin-top: 80px;
    justify-content: center;
}
#imagenes_disertantes {
    gap: 20px;
    justify-content: center;
}
.marco_disertante {
    width: 185px;
    margin-right: 0px;
    padding-top: 5px;
    gap: 4px;
    height: 140px;
}
.marco_disertante h5{
    font-size: 16px;
    line-height: 16px;
    width: 60%;
}

.marco_disertante img {
    width: 100px;
}

#general_disertantes h2 {
    text-align: center;
}




/*UBICACION Y CONTACTO*/
#ubicacion, #donaciones {
         height: max-content;
        padding-bottom:100px;
    }
#general_ubicacion {
    width: calc(100%  - 48px);
    height: calc(100% - 48px - 80px);
    padding:24px;
    margin-left: 0px;
    margin-top: 80px;

}
#general_contacto {
    padding: 16px;
    gap: 10px;
    width: calc(600px - 32px);
}

#general_mapa {
    padding: 24px;
    gap: 10px;
    width: calc(600px - 48px);
}
#general_mapa iframe {
    height: 300px;
    width: 100%;
    border-radius: 8px;
}



#general_mapa_lugar{
    padding: 24px;
    gap: 10px;
    width: calc(600px - 48px);
  }
  #titulo_mapa_lugar h2{
      width: 100%;
      margin: 0;
      color: var(--brand-3, #33383C);
      font-family: "EB Garamond";
      font-size: 36px;
      font-style: normal;
      font-weight: 400;
      line-height: normal;
      text-align: left;
  }
  #mapa_lugar{
      height: 300px;
  }


.column_contacto {
    gap: 10px;
}

#formu_contacto, .column_contacto button {
    padding: 4px
}


/*DONACIONES*/
#general_donaciones {
    width: calc(100% - 64px);
    height: calc(100% - 96px - 80px);
    padding: 48px 32px;
    margin-left: 0px;
    gap: 40px;
    margin-top: 80px;
}
#organiza {
    width: calc(600px - 48px);
    padding: 24px;
    height: 250px;
}

#cvu {
    width: calc(600px - 48px);
    padding: 24px;
    height: max-content;
}

#organiza_legion div h4 {
    font-size: 32px;
}


#dona {
    font-size: 16px;
    line-height: var(--Typescale-Body-Large-Line-Height, 18px);
}

#alias {
    font-size: 18px;
    line-height: var(--Typescale-Title-Large-Line-Height, 22px);
}

#general_donaciones h4 {
    font-size: 22px;
    line-height: var(--Typescale-Headline-Medium-Line-Height, 24px);
    width: 80%;
}
}



@media (min-width: 426px) and (max-width: 768px){
    body, html {

        height: 100%;
    }
    /*LOADER*/
    #loader-barco {
        width: 125px;
        animation: navigate 3s infinite;
    }
    /*WHATSAPP*/
    #whatsapp-button {
        height: 45px;
        width: 45px;
        bottom: 10px;
    right: 10px;
    }
    #whatsapp-button i {
        font-size: 30px;
    }
    .whatsapp-notification {
        top: 0px;
        right: 2px;
        font-size: 8px;
        width: 10px;
        height: 10px;
    }
    .whatsapp-tooltip {
        position: absolute;
        bottom: 100%;
        margin-bottom: 7px;
        right: 0px;
        transform: translateX(-10%);
        background-color: #1ebe5d;
        color: white;
        padding: 8px 8px;
        border-radius: 8px;
        font-size: 13px;
        font-weight: 500;
        white-space: nowrap;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
        /* opacity: 0; */
        /* visibility: hidden; */
        transition: opacity 0.3s ease, transform 0.3s ease;
        pointer-events: none;
    }
    /*SIDEBAR*/
    .hero {
    height: max-content;
        
    }
    #fucat {
    height: max-content;
    }
    
    #nav_oculto{
        display: flex;
        justify-content: center;
        align-items: center;
        height: calc(55px - 20px);
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        padding: 10px;
        background: rgba(255, 255, 255, 0.60);
    box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.05);
    z-index: 10000;
    transition: transform 0.3s ease;
    
    }
    #nav_oculto.hidden {
        transform: translateY(-80px); /* Aparece en su posición original */
    }
    #nav_oculto img{
        height: 100%;
        width: auto;
      
        
    }
    
    .hamburger-button {
        background: none;
        color: #33383C; /* Color de fondo del botón */
        border: none; /* Sin bordes */
        border-radius: 5px; /* Bordes redondeados */
        padding: 5px 10px; /* Espaciado interno */
        cursor: pointer; /* Cambiar el cursor a mano */
        font-size: 16px; /* Tamaño del ícono */
        display: flex; /* Alinear el contenido */
        align-items: center;
        justify-content: center;
        transition: background-color 0.3s ease, transform 0.2s ease;
        position: absolute;
        left: 24px;
        outline: none; /* Elimina el contorno estándar */
        -webkit-tap-highlight-color: transparent; 
        z-index: 11111111111111111122;
        
    }
    
    
    .hamburger-button:active {
        transform: scale(0.95); /* Efecto de clic */
    }
    
    .close-sidebar-button {
        display: flex;
        background: none;
        color: #33383C;
        border: none;
        border-radius: 5px;
        padding: 10px 15px;
        cursor: pointer;
        font-size: 20px;
        display: flex;
        align-items: center;
        justify-content: end;
        transition: background-color 0.3s ease, transform 0.2s ease;
        outline: none;
        -webkit-tap-highlight-color: transparent;
        position: absolute;
        right: 10px;
        top: 20px;
        z-index: 11111111111111111122;
    }
    
    #sidebar {
        width: calc(280px - 20px);
        transition: transform 0.3s ease; /* Animación suave */
        transform: translateX(-280px); /* Oculto a la izquierda */
        z-index: 111111111111111111;
        padding-left: 10px;
        padding-right: 10px;
        padding-bottom:0;
        padding-top:0;
        top: 0;
        height: calc(100%);
        background: rgba(255, 255, 255, 0.90);
    }
    #sidebar.visible {
        transform: translateX(0); /* Aparece en su posición original */
    }
    #sidebar_1 {
        gap: 8px;
        width: 100%;
        padding-top: 20px;
    }
    #logo_1 {
        height: 50px;
    }
    #logo_2 {
        height: 50px;
    }
    #inscribite {
        width: 220px;
        height: 50px;
        font-size: 16px;
    }
    .botones_sidebar {
        font-size: 16px;
        gap: 8px;
    }
    #sidebar_4{
        padding-bottom:20px;
    }
    
    
    /*HERO*/
    #hero_center {
        width: calc(100% - 32px);
        height: max-content;
        margin-top: 55px ;
        padding: 16px;
        margin-left: 0px;
        justify-content: center;
        align-items: center;
        overflow: hidden;
    }
    
    #contenido_hero_center {
        gap: 10px;
        width: calc(100% - 48px);
        padding: 48px 0px;
        z-index: 2;
    }
    
    #barco_grande {
        width: 180px;
    }
    #fucat_desc{
        width: 180px;
    }
    #ic_logo{
        width: 30px;
    }
    
    #contenido_hero_center p {
        font-size: 14px;
        line-height: var(--Typescale-Body-Large-Line-Height, 14px);
    }
    #cuenta-regresiva {
        padding: 5px 30px;
        width: 50%;
        height: 65px;

    }
    .columna span {
        font-size: 18px;
        line-height: var(--Typescale-Display-Small-Line-Height, 20px);
    }
    .columna div {
        font-size: 16px;
        line-height: var(--Typescale-Headline-Small-Line-Height, 18px);
    }
    #imagen_jovenes_hero {
        position: absolute;
        width: 130%;
        height: auto;
        right: -40%;
        z-index: 1;
        opacity: 0.2;
    }
    .video-container iframe {
        width: 391px;
        height: 220px;
    }
    
    /*QUE ES FUCAT*/
    #fucat {
    height: max-content;
        padding-bottom:100px;
    }
    #general_fucat , .video-container  {
        width: calc(100% - 32px);
        height: max-content;
        padding: 16px;
        margin-left: 0px;
        flex-direction: column;
        gap: 30px;
        margin-top: 55px ;
        justify-content: center;
        padding-bottom: 100px;
    }
        #img_fucat {
        border-radius: 16px;
        height: 350px;
        order: 1;
        width: 80%;
        object-fit: cover;
    }
    #izq_fucat {
        gap: 20px;
        height: max-content;
        order: 2;
        width: 100%;
    }
    
    #contenido_izq_fucat {
        gap: 15px;
    }
    
    #titulo_izq_fucat h3 {
        text-align: center;
        justify-content: center;
    }
    
    
    #contenido_izq_fucat h2 {
        font-size: 22px;
        text-align: center;
    }
    
    #contenido_izq_fucat h3 {
        font-size: 24px;
        text-align: center;
    }
    
    
    #contenido_izq_fucat p {
        line-height: 28px;
        text-align: center;
    }
    
    #imagenes_que_fucat {
     justify-content: center;
     width: 100%;
    }
    
    
    
    
    
    
    /*CRONOGRAMA*/
    .celda_misa {
        color: #33383C !important;
        font-weight: 600 !important;
        font-size: 15px;
    }
    .contenido_cada_dia {
        margin: 0px;
      }
    #body_cronograma {
        width: 100%;
    }
      #cronograma {
         height: max-content;
        padding-bottom:100px;
    }
    #cronograma {
        background-position: left;
        height: max-content;
        padding-bottom: 100px;
        background-position: left;
        min-height: 600px;
        align-items: start;
    }
    #general_cronograma {
        width: calc(100% - 32px);
        height: calc(100% - 32px - 55px );
        padding:16px;
        margin-left: 0px;
        margin-top: 55px ;
        gap: 10px;
    }
    #contenido_cronograma {
        gap: 10px;
        width: calc(100% - 20px);
        padding: 10px;
        min-height: 400px;
    }
    .carousel {
        gap: 20px;
    }
    .dia_arriba{
        font-size: 12px;
    }
    .dia_abajo {
        font-size: 14px;
    }
    .dia_abajo strong {
        font-size: 18px;
    }
    .speaker {
        font-size: 12px;
        line-height: var(--Typescale-Body-Large-Line-Height, 14px);
    }
    .conferencia strong {
        font-size: 16px;
        line-height: var(--Typescale-Body-Large-Line-Height, 18px);
        width: 90%;
    }
    .carousel-container {
        padding-bottom: 8px;
    }
    .carousel-button {
        gap: 0px;
    }
    
    
    .conferencia {
        font-size: 16px;
        line-height: var(--Typescale-Title-Large-Line-Height, 18px);
    }
    .contenido_cada_dia {
        gap: 14px;
    }
    
    
    
    /*DISERTANTES*/
      #disertantes {
         height: max-content;
        padding-bottom:100px;
    }
    #disertantes {
        flex-direction: row;
        height: max-content;
        background-position: right;
    }
    #general_disertantes {
        width: calc(100% - 32px);
        height: calc(100% - 32px- 55px );
        padding: 16px;
        margin-left: 0px;
        margin-top: 55px ;
        justify-content: center;
    }
    #imagenes_disertantes {
        gap: 20px;
        justify-content: center;
    }
    .marco_disertante {
        width: 185px;
        margin-right: 0px;
        padding-top: 5px;
        gap: 4px;
        height: 140px;
    }
    .marco_disertante h5{
        font-size: 16px;
        line-height: 16px;
        width: 60%;
    }
    
    .marco_disertante img {
        width: 100px;
    }
    
    #general_disertantes h2 {
        text-align: center;
    }
    
    
    
    
    /*UBICACION Y CONTACTO*/
    #ubicacion, #donaciones {
         height: max-content;
        padding-bottom:100px;
    }
    #ubicacion {
        height: max-content;
        padding-bottom: 100px;
    }
    #general_ubicacion {
        width: calc(100%  - 32px);
        height: calc(100% - 32px - 55px );
        padding:16px;
        margin-left: 0px;
        margin-top: 55px ;
        gap: 0;
    
    }
    #general_contacto {
        padding: 16px;
        gap: 10px;
        width: calc(100% - 32px);
    }
    
    #general_mapa {
        padding: 16px;
        gap: 10px;
        width: calc(100% - 32px);
    }
    #titulo_mapa ,#titulo_mapa_lugar{
        gap: 0px;
        width: 100%;
    }

    #general_mapa iframe {
        height: 200px;
        width: 100%;
        border-radius: 8px;
    }









    #general_mapa_lugar{
        padding: 16px;
        gap: 10px;
        width: calc(100% - 32px);
      }
      #titulo_mapa_lugar h2{
          width: 100%;
          margin: 0;
          color: var(--brand-3, #33383C);
          font-family: "EB Garamond";
          font-size: 36px;
          font-style: normal;
          font-weight: 400;
          line-height: normal;
          text-align: left;
      }
      #mapa_lugar{
        width: 100%;
        height: auto;
      }

      














    .columnas_contacto {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        gap: 20px;
    }

    .column_contacto {
        gap: 10px;
        width: 100%;
    }
    
    #formu_contacto, .column_contacto button {
        padding: 8px;
    }


    .column_contacto h3 {
        font-size: 14px;
        line-height: var(--Typescale-Body-Large-Line-Height, 16px);
    }

    .column_contacto p {
        font-size: 14px;
        line-height: var(--Typescale-Body-Large-Line-Height, 16px);
    }
    .column_contacto button {
    font-size: 14px;
        line-height: var(--Typescale-Body-Large-Line-Height, 16px);
    }

    .column_contacto button i {
        font-size: 24px;
        color: #33383C;
        transition: all 0.3s ease;
    }

    #formu_contacto svg{
        width: 24px;
        height: 24px;
    }
    /*DONACIONES*/
    #donaciones {
        height: max-content;
        padding-bottom: 100px;
    }
    #general_donaciones {
        width: calc(100% - 32px);
        height: calc(100% - 32px - 55px );
        padding: 16px;
        margin-left: 0px;
        gap: 16px;
        margin-top: 55px ;
    }
    #organiza {
        width: calc(100% - 48px);
        padding: 24px;
        height: 140px;
    }
    #organiza_legion div {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        gap: 4px;
    }
    #organiza_legion img {
        height: 70px;
        width: auto;
        
    }
    #organiza_legion {
        gap: 10px;
        height: 80px;
    }
    #organiza_legion div p {
        font-size: 16px;
        line-height: var(--Typescale-Title-Large-Line-Height, 20px);
    }
    

    

    #cvu {
        width: calc(100% - 20px);
        padding: 10px;
        height: 370px;

    }
    
    #organiza_legion div h4 {
        font-size: 18px;
        line-height: 20px;
    }
    
    
    #dona {
        font-size: 14px;
        line-height: var(--Typescale-Body-Large-Line-Height, 16px);
        width: 100%;
    }
    
    #alias {
        font-size: 16px;
        line-height: var(--Typescale-Title-Large-Line-Height, 18px);
    }
    
    #general_donaciones h4 {
        font-size: 18px;
        line-height: var(--Typescale-Headline-Medium-Line-Height, 24px);
        width: 80%;
    }
    }

@media (min-width: 300px) and (max-width: 426px){
    body, html {
        
       height: 100%;
    }
    /*LOADER*/
    #loader-barco {
        width: 120px;
        animation: navigate 3s infinite;
    }
    /*WHATSAPP*/
    #whatsapp-button {
        height: 50px;
        width: 50px;
        bottom: 10px;
        right: 10px;
    }
    #whatsapp-button i {
        font-size: 40px;
    }
    .whatsapp-notification {
        top: 2px;
        right: 2px;
        font-size: 8px;
        width: 8px;
        height: 8px;
    }
    .whatsapp-tooltip {
        position: absolute;
        bottom: 100%;
        margin-bottom: 4px;
        right: 0px;
        transform: translateX(-10%);
        background-color: #1ebe5d;
        color: white;
        padding: 8px 8px;
        border-radius: 8px;
        font-size: 12px;
        font-weight: 500;
        white-space: nowrap;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
        /* opacity: 0; */
        /* visibility: hidden; */
        transition: opacity 0.3s ease, transform 0.3s ease;
        pointer-events: none;
    }
    /*SIDEBAR*/
    
    .hero {
    height: max-content;
        
    }
    #fucat {
    height: max-content;
    }
    #nav_oculto{
        display: flex;
        justify-content: center;
        align-items: center;
        height: calc(55px - 20px);
        position: fixed;
        top: 0;
        left: 0;
        width: calc(100% - 20px);
        padding: 10px;
        background: rgba(255, 255, 255, 0.60);
    box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.05);
    z-index: 10000;
    transition: transform 0.3s ease;
    
    }
    #nav_oculto.hidden {
        transform: translateY(-55px); /* Aparece en su posición original */
    }
    #nav_oculto img{
        height: 100%;
        width: auto;
      
        
    }
    
    .hamburger-button {
        background: none;
        color: #33383C; /* Color de fondo del botón */
        border: none; /* Sin bordes */
        border-radius: 5px; /* Bordes redondeados */
        padding: 5px 10px; /* Espaciado interno */
        cursor: pointer; /* Cambiar el cursor a mano */
        font-size: 16px; /* Tamaño del ícono */
        display: flex; /* Alinear el contenido */
        align-items: center;
        justify-content: center;
        transition: background-color 0.3s ease, transform 0.2s ease;
        position: absolute;
        left: 24px;
        outline: none; /* Elimina el contorno estándar */
        -webkit-tap-highlight-color: transparent; 
        z-index: 11111111111111111122;
        
    }
    
    
    .hamburger-button:active {
        transform: scale(0.95); /* Efecto de clic */
    }
    
    .close-sidebar-button {
        display: flex;
        background: none;
        color: #33383C;
        border: none;
        border-radius: 5px;
        padding: 10px 15px;
        cursor: pointer;
        font-size: 15px;
        font-weight: 400;
        display: flex;
        align-items: center;
        justify-content: end;
        transition: background-color 0.3s ease, transform 0.2s ease;
        outline: none;
        -webkit-tap-highlight-color: transparent;
        position: absolute;
        right: 10px;
        top: 20px;
        z-index: 11111111111111111122;
    }
    
    #sidebar {
        width: calc(200px - 20px);
        transition: transform 0.3s ease; /* Animación suave */
        transform: translateX(-280px); /* Oculto a la izquierda */
        z-index: 111111111111111111;
        padding-left: 10px;
        padding-right: 10px;
         padding-bottom:0;
        padding-top:0;
        top: 0;
        height: calc(100%);
        background: rgba(255, 255, 255, 0.90);
    }
    #sidebar.visible {
        transform: translateX(0); /* Aparece en su posición original */
    }
    #sidebar_1 {
        gap: 8px;
        width: 100%;
        padding-top:20px;
    }
    #logo_1 {
        height: 35px;
    }
    #logo_2 {
        height: 35px;
    }
    #inscribite {
        width: 180px;
        height: 35px;
        font-size: 12px;
    }
    .botones_sidebar {
        font-size: 12px;
        gap: 8px;
        padding: 4px 0px 4px 4px;
       height: 15px;
        
    }
    .botones_sidebar svg{
        width: 20px;
        height: 20px;
    }
    #btn_fucat img {
        width: 20px;
        height: 20px;
    }

    #sidebar_4 p {
        font-size: 15px;
        line-height: 120%;
    }


    #sidebar_4 div button img{
        width: 20px;
    }
    #sidebar_4{
        padding-bottom:20px;
    }
    
    /*HERO*/
    #hero_center {
        width: calc(100% - 32px);
        height: calc(100% - 32px - 55px);
        margin-top: 55px ;
        padding: 16px;
        margin-left: 0px;
        justify-content: center;
        align-items: center;
        overflow: hidden;
    }
    
    #contenido_hero_center {
        gap: 10px;
        width: calc(100% - 48px);
        padding: 48px 0px;
        z-index: 2;
        padding-top: 0;
    }
    
    #barco_grande {
        width: 180px;
    }
    #fucat_desc{
        width: 180px;
    }
    #ic_logo{
        width: 30px;
    }
    
    #contenido_hero_center p {
        font-size: 14px;
        line-height: var(--Typescale-Body-Large-Line-Height, 14px);
    }
    #cuenta-regresiva {
        padding: 5px 30px;
        width: 70%;
        height: 65px;

    }
    .columna span {
        font-size: 18px;
        line-height: var(--Typescale-Display-Small-Line-Height, 20px);
    }
    .columna div {
        font-size: 16px;
        line-height: var(--Typescale-Headline-Small-Line-Height, 18px);
    }
    #imagen_jovenes_hero {
        position: absolute;
        width: 130%;
        height: auto;
        right: -40%;
        z-index: 1;
        opacity: 0.2;
    }
    .video-container iframe {
        width: 293px;
        height: 165px;
    }
    
    /*QUE ES FUCAT*/
    #general_fucat , .video-container  {
        width: calc(100% - 32px);
        height: calc(100% - 32px - 55px);
        padding: 16px;
        margin-left: 0px;
        flex-direction: column;
        gap: 30px;
        margin-top: 55px ;
        justify-content:center;
        padding-bottom: 100px;
    }
        #img_fucat {
        border-radius: 16px;
        height: 250px;
        order: 1;
        width: 80%;
        object-fit: cover;
    }
    #izq_fucat {
        gap: 20px;
        height: max-content;
        order: 2;
        width: 100%;
    }
    
    #contenido_izq_fucat {
        gap: 15px;
    }
    
    #titulo_izq_fucat h3 {
        text-align: center;
        justify-content: center;
        font-size: 14px;
    }
    
    
    #contenido_izq_fucat h2 {
        font-size: 22px;
        text-align: center;
    }
    
    #contenido_izq_fucat h3 {
        font-size: 20px;
        text-align: center;
    }
    
    
    #contenido_izq_fucat p {
        line-height: 16px;
        text-align: center;
        font-size: 14px;
    }
    
    #imagenes_que_fucat {
     justify-content: center;
     width: 100%;
     gap: 8px;
    }

    #imagenes_que_fucat {
        justify-content: center;
        width: 100%;
        gap: 8px;
       }
    
    
    
    
    
    
    /*CRONOGRAMA*/
    .celda_misa {
        color: #33383C !important;
        font-weight: 600 !important;
        font-size: 15px;
    }
    .cronograma th:first-child, .cronograma td:first-child {
        width: 50px;
    }
    .celda_conferencia{
        gap: 8px;
    }
    .cronograma th, .cronograma td {
        border: 1px solid #ddd;
        padding: 8px;
        text-align: center;
        vertical-align: middle;
        color: #33383C;
        font-weight: 500;
        font-size: 14px;
    }

    .contenido_cada_dia {
      margin: 0px;
    }
    #body_cronograma {
        width: 100%;
    }
      #cronograma {
         height: max-content;
        padding-bottom:100px;
    }
    #cronograma {
        background-position: left;

    }
    #general_cronograma {
        width: calc(100% - 32px);
        height: calc(100% - 32px - 55px );
        padding:16px;
        margin-left: 0px;
        margin-top: 55px ;
        gap: 10px;
    }
    #general_cronograma h2 {
        font-size: 24px;
        line-height: 24px;
    }
    #contenido_cronograma {
        gap: 10px;
        width: calc(100% - 20px);
        padding: 10px;
        padding-bottom: 50px;
        min-height: 400px;
    }
    .carousel {
        gap: 4px;
    }
    .dia_arriba{
        font-size: 14px;
    }
    .dia_abajo {
        font-size: 14px;
    }
    .dia_abajo strong {
        font-size: 16px;
    }
    .speaker {
        font-size: 12px;
        line-height: var(--Typescale-Body-Large-Line-Height, 14px);
    }
    .conferencia strong {
        font-size: 16px;
        line-height: var(--Typescale-Body-Large-Line-Height, 16px);
        width: 90%;
    }
    .carousel-container {
        padding-bottom: 8px;
    }
    .carousel-button {
        gap: 0px;
    }
    
    .contenido_cada_dia div {
        align-items: start;
        justify-content: flex-start;
    }
    .conferencia {
        font-size: 18px;
        line-height: var(--Typescale-Title-Large-Line-Height, 18px);
        width:80%;
    }
    .contenido_cada_dia {
        gap: 8px;
    }
    
    
    
    /*DISERTANTES*/
    
    #disertantes {
        flex-direction: row;
        height: calc(100% - 32px );
        background-position: right;
        justify-content: flex-start;
        
    }
      #disertantes {
         height: max-content;
        padding-bottom:100px;
    }
    #general_disertantes {
        width: calc(100% - 32px);
        height: calc(100% - 32px - 55px );
        padding: 16px;
        margin-left: 0px;
        margin-top: 55px ;
       
        justify-content: flex-start;
    }
    #imagenes_disertantes {
        gap: 20px;
        justify-content: center;
    }
    .marco_disertante {
        width: 45%;
        margin-right: 0px;
        padding-top: 5px;
        gap: 4px;
        height: 150px;
    }
    .marco_disertante h5 {
        font-size: 10px;
        line-height: 12px;
        width: 60%;
    }
    
    .marco_disertante img {
        width: 100px;
    }
    
    #general_disertantes h2 {
        text-align: center;
        font-size: 24px;

    }
    
    
    
    
    /*UBICACION Y CONTACTO*/
    #ubicacion, #donaciones {
         height: max-content;
        padding-bottom:100px;
    }
    #general_ubicacion {
        width: calc(100%  - 32px);
        height: calc(100% - 32px - 55px );
        padding:16px;
        margin-left: 0px;
        margin-top: 55px ;
        gap: 0;
    
    }
    #general_contacto {
        padding: 8px;
        padding-top: 0;
        gap: 20px;
        width: calc(100% - 16px);
    }
    #general_contacto h2 {
        font-size: 24px;
    }

    #general_mapa {
        padding: 8px;
        gap: 10px;
        width: calc(100% - 16px);
        height: 100%;
    }
    #titulo_mapa ,#titulo_mapa_lugar{
        gap: 0px;
        width: 100%;
    }

    #general_mapa iframe {
        height: 80%;
        width: 100%;
        border-radius: 8px;
    }



    
    #general_mapa_lugar{
        padding: 8px;
        gap: 10px;
        width: calc(100% - 16px);
        height: 100%;
      }
      #titulo_mapa_lugar h2{
        font-size: 24px;
      }
      #mapa_lugar{
        width: 100%;
        height: auto;
        border-radius: 8px;
      }










    .columnas_contacto {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        gap: 8px;
    }

    .column_contacto {
        gap: 10px;
        height: max-content;
        width: 100%;
    }
    
    #formu_contacto, .column_contacto button {
        padding: 4px;
        border-radius: 4px;
        height: 40px;
    }


    .column_contacto h3 {
        font-size: 14px;
        line-height: var(--Typescale-Body-Large-Line-Height, 14px);
    }

    .column_contacto p {
        font-size: 14px;
        line-height: var(--Typescale-Body-Large-Line-Height, 16px);
        text-align: left;
    }
    .column_contacto button {
    font-size: 14px;
        line-height: var(--Typescale-Body-Large-Line-Height, 16px);
    }

    .column_contacto button i {
        font-size: 18px;
        color: #33383C;
        transition: all 0.3s ease;
    }

    #formu_contacto svg{
        width: 15px;
        height: 15px;
    }

    #titulo_mapa p {
        font-size: 12px;
        line-height: var(--Typescale-Body-Large-Line-Height, 12px);
        letter-spacing: var(--Typescale-Body-Large-Letter-Spacing, 0.5px);
    }
    
    /*DONACIONES*/
    #general_donaciones {
        width: calc(100% - 32px);
        height: calc(100% - 32px - 55px );
        padding: 16px;
        margin-left: 0px;
        gap: 30px;
        margin-top: 55px ;
        justify-content: center;
    }
    #titulo_mapa h2 {
        font-size:24px ;
    }
    #organiza {
        width: calc(100% - 64px);
        padding: 32px;
        height: 140px;
    }
    #organiza_legion div {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        gap: 4px;
    }
    #organiza_legion img {
        height: 70px;
        width: auto;
        
    }
    #organiza_legion {
        gap: 10px;
        height: 80px;
    }
    #organiza_legion div p {
        font-size: 16px;
        line-height: var(--Typescale-Title-Large-Line-Height, 20px);
    }




    #cvu {
        width: calc(100% - 20px);
        padding: 10px;
        height: max-content;
        padding-bottom: 50px;
    }

    #organiza_legion div h4 {
        font-size: 18px;
        line-height: 20px;
    }


    #dona {
        font-size: 12px;
        line-height: var(--Typescale-Body-Large-Line-Height, 16px);
        width: 100%;
    }

    #alias {
        font-size: 14px;
        line-height: var(--Typescale-Title-Large-Line-Height, 20px);
    }
    #general_donaciones h4 {
        font-size: 14px;
        line-height: var(--Typescale-Headline-Medium-Line-Height, 20px);
        width: 90%;
    }


    }