@import url('https://fonts.googleapis.com/css2?family=Merriweather:ital,opsz,wght@0,18..144,820;1,18..144,820&family=Raleway:ital,wght@0,100..900;1,100..900&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');

.top {
    display: grid;
    grid-template-areas:
        'icono titulo'
        'icono parrafo';
    margin-right: 10pt;
    margin-left: 10pt;
    align-items: end;
}

.back-container {
    display: flex;
    align-items: center;
    gap: 8px;
    /* Espacio entre la flecha y el texto */
    padding: 10px;
    height: 40pt;
}

.back {
    display: flex;
    align-items: center;
    font-size: 30pt;
    font-weight: bold;
    text-decoration: none;
    color: black;
}

.flecha {
    width: 12%;
}

/* Estilos generales */
.top>img {
    grid-area: icono;
    width: 130%;
    margin-top: 15pt;
}

.top.arriba {
    grid-area: titulo;
    color: rgb(10, 112, 207);
    font-size: 40pt;
    letter-spacing: 0.5pt;
    text-align: right;
    font-weight: 900;
    font-family: Raleway;
    margin-top: 45pt;
    margin-right: 60pt;
}

@media (max-width: 768px) {
    .top {
        flex-direction: column;
        text-align: center;
    }

    .top img {
        width: 80px;
    }

    .dias {
        grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
    }

    .titulo {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .top h1 {
        font-size: 1.5rem;
    }

    .dias {
        grid-template-columns: repeat(2, 1fr);
    }

    .botones {
        flex-direction: column;
        align-items: center;
    }
}

.top>p {
    font-size: 25pt;
    grid-area: parrafo;
    margin-top: -20pt;
    margin-left: 240pt;
    font-family: Arial;
}

.top1 {
    grid-area: margen;
}

#elemento {
    background-color: rgb(49, 103, 202);
}

/* MEDIA QUERY PARA ESCRITORIO */
@media (min-width:1024px) {
    .top {
        max-width: 2400px;
        margin: auto;
        column-gap: 40pt;
    }

    .top>img {
        width: 57%;
    }

    .top>p {
        margin-left: 460pt !important;
        margin-bottom: 110pt !important;
    }

    .imgActual {
        width: 1.5%;
    }

    .img {
        width: 4% !important;
        border-radius: 100%;
        margin: 15pt;
        height: 7%;
        border: solid, black;
    }

    
}

.keys {
    margin-top: 15pt;
    display: grid;
    margin-left: 30pt;
    grid-template-columns: 30% 70%;
    font-family: Raleway;
}

hr {
    width: 100%;
    /* Asegura que el <hr> ocupe todo el ancho del contenedor */
    height: 1px;
    /* Define el grosor de la línea */
    border: none;
    /* Elimina bordes predeterminados */
    background-color: black;
    /* Define el color de la línea */
    margin-top: 20pt;
}

.botones {
    display: flex;
    flex-direction: row;
    margin-left: 20pt;
}

.boton {
    padding-top: 40pt;
    background-color: rgb(49, 103, 202);
    color: white;
    margin-left: 5pt;
    text-align: left;
    font-family: Raleway;
    font-weight: 700;
    font-size: 14.5pt;
    padding-right: 20pt;
    border: none;
}

#help {
    margin-top: 15pt;
    margin-left: 20pt;
    display: flex;
    /* Activa Flexbox */
    align-items: center;
    /* Centra el texto verticalmente */
    justify-content: center;
    /* Centra el texto horizontalmente */
    background-color: rgb(202, 202, 202);
    ;
    font-family: Raleway;
    font-weight: 700;
    padding-top: 10pt;
    padding-bottom: 10pt;
    width: 105%;
    font-size: 14.5pt;
    /* Margen izquierdo */
    border: none;
}

#ayuda {
    position: relative;
    /* Relativo al contenedor del botón */
    top: 0;
    /* Ajusta la posición vertical */
    padding-left: 5pt;
    height: auto;
    /* Mantiene la proporción de la imagen */
    z-index: 3;
    /* Asegura que esté por encima de otros elementos */
}

* {
    font-family: Raleway;
}

/* Estilos de la sección de días */
.dias {
    position: sticky;
    background-color: white;
    padding: 30pt;
    border-bottom-left-radius: 15pt;
    border-bottom-right-radius: 15pt;
    top: 45pt;
    display: grid;
    grid-template-columns: repeat(3, auto);
    /* Mantén el grid de 3 columnas */
    gap: 20pt;
    /* Espacio entre los días */
    font-weight: 700;
    margin: 0 auto;
    /* Ajusta el margen superior e inferior */
    max-width: 90%;
}

hr {
    height: 5pt;
}

.dia:hover {
    cursor: pointer;
}

.dia {
    width: auto;
    font-size: 30pt;
    background-color: rgb(49, 103, 202);
    color: white;
    padding: -20pt;
    border-radius: 5px;
    text-align: center;
}

/* Estilos de las ponencias */
.ponencia {
    background-color: white;
    padding: 20px;
    border-bottom: 1px solid #ddd;
    max-width: 90%;
    margin: 0 auto;
}

.hora {
    color: rgb(49, 103, 202);
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 5px;
}

.lugar {
    color: #555;
    font-size: 16px;
    margin-bottom: 10px;
}

.titulo {
    font-size: 30pt;
    font-weight: bold;
    margin-bottom: 10px;
}

.imagenes {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.imagen {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.descripcion {
    font-size: 14px;
    color: #555;
}

.iconos {
    position: fixed;
    bottom: 0;
    margin-top: 20pt;
    left: 0;
    height: 4%;
    width: 100%;
    background: white;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 10px 0;
    border-top: 1px solid #ddd;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    /* Asegura que los iconos estén por encima de otros elementos */
    padding: 20pt 0pt;
}

.contenedor-dias {
    position: sticky;
    top: 15pt;
    background-color: white;
    border-radius: 15pt;
    padding-top: 15pt;
}

.cp {
    text-align: center;
    background-color: white;
    margin-bottom: -15pt;
    padding-bottom: 10pt;
    position: sticky;
    top: 15pt;
    border-top-right-radius: 15pt;
    border-top-left-radius: 15pt;
    color: rgb(49, 103, 202);
}

.iconos img {
    vertical-align: middle;
    width: 15%;
    /* Tamaño fijo para los iconos */
    height: 15%;
    /* Mantiene la altura proporcional */
    object-fit: contain;
    padding: 5px;
}

.iconos>a {
    vertical-align: middle;
    width: 15%;
    /* Tamaño fijo para los iconos */
    height: 120%;
    /* Mantiene la altura proporcional */
    object-fit: contain;
    padding: 5px;
}

.conEnlace1 {
    width: 100%;
    height: 100%;
}

.img {
    width: 140pt !important;
    border-radius: 100%;
    margin: 15pt;
    height: 140pt !important;
    border: solid, grey;
}

#ponencias-container {
    margin-bottom: 100px;
    /* Ajusta este valor según la altura de tu barra de iconos */
}

@media (min-width: 1025px) {
    .iconos {
        width: 30%;
        margin-left: 35%;
    }

    .dias {
        grid-template-columns: repeat(4, auto);
    }
}

hr {
    width: 2pt;
    height: 5000pt;
    border: solid, red, 20pt;
}

.sesion {
    text-align: center;
    background-color: rgb(49, 103, 202);
    color: white;
    padding: 20pt;
    margin-top: 30px;
}

@media (max-width: 1024px) and (orientation: landscape) {
    .iconos {
        position: fixed;
        bottom: 0;
        width: 100%;
        height: 10%;
        /* Ajusta la altura para que se vea bien */
        background: white;
        display: flex;
        justify-content: space-around;
        align-items: center;
        padding: 10px 0;
        border-top: 1px solid #ddd;
        box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        /* Asegura que esté por encima de otros elementos */
    }

    .iconos a {
        width: 8%;
        /* Reduce el tamaño de los iconos si es necesario */
        height: auto;
        object-fit: contain;
    }
}

@media (max-width: 1024px) and (orientation: portrait) {
    .iconos {
        position: fixed;
        bottom: 0;
        width: 100%;
        height: 5%;
        /* Ajusta la altura para que se vea bien */
        background: white;
        display: flex;
        justify-content: space-around;
        align-items: center;
        padding: 10px 0;
        border-top: 1px solid #ddd;
        box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        /* Asegura que esté por encima de otros elementos */
    }

    .iconos a {
        width: 15%;
        /* Reduce el tamaño de los iconos si es necesario */
        height: auto;
        object-fit: contain;
    }
}

.sesioon {
    margin-top: -10pt !important;
    margin-bottom: 30pt !important;
}

.ponencia p,
.ponencia h3 {
    margin: 5px 0;
}
@media (min-width: 429px) {
    .img {
        width: 140pt;
        border-radius: 100%;
        margin: 15pt;
        height: 140pt;
        border: solid, grey;
    }
}
@media (orientation:landscape){
    .contenedor-dias{
        position:inherit ;
    }
}