.description-edition-container{
    padding-top: 30px;
    width: 70%;
    margin: 0 auto;
}
.description-edition{
    margin: 0 auto;
    padding: 30px;
    border: 1px #1498af solid;
    border-radius: 5px;
    margin: 20px;
    box-shadow: 0px 4px 10px rgba(9, 92, 107, 0.3);
    position: relative;
}
.description-edition p {
    font-size: 20px;
    color: #666;
    text-align: justify;
    transition: transform 0.9s ease;
}
.description-edition p:hover {
    transform: scale(1.03); /* Agranda un 5% solo el texto */
}
.description-edition::before {
    content: '';
    position: absolute;
    bottom: 0; /* Posicionado en la parte inferior */
    left: 0;
    width: 0; /* Inicialmente la línea está oculta */
    height: 4px; /* Grosor de la línea */
    background: linear-gradient(to right, #12b2ce, #043e47); /* Degradado con dos colores */
    transition: width 0.6s ease; /* Animación de expansión */
}

/* Al pasar el cursor por el cuadro, la línea se expande */
.description-edition:hover::before {
    width: 100%; /* La línea se extiende al 100% de ancho */
    box-shadow: 0px 4px 10px rgba(9, 92, 107, 0.904);
}

@media (max-width: 1110px) {
    .description-edition-container{
        padding-top: 30px;
        width: 85%;
    }

}
@media (max-width: 768px) {
    .description-edition-container{
        padding-top: 20px;
        width: 95%;
    }
    .description-edition p {
        font-size: 18px;

    }


}
@media (max-width: 500px) {
    .description-edition-container{
        padding-top: 10px;
        width: 100%;
    }
    .description-edition {

        padding: 15px;
    }
    .description-edition p {
        font-size: 15px;

    }

}








/* Estructura básica */
.edition-container {
    padding-top: 30px;
    padding-bottom: 30px;
    width: 70%;
    margin: 0 auto;
    display: flex;
    justify-content: center; /* Centrar horizontalmente */
    align-items: center; /* Centrar verticalmente (si es necesario) */
    gap: 20px; /* Espacio entre las tarjetas */
}

.product-card {
    margin: 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    perspective: 1000px; /* Para que el efecto 3D sea más notorio */
}

.product-cover img {
    width: 200px;
    height: 300px;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Botón */
.product-button {
    border: none;
    outline: none;
    cursor: pointer;
    font-size: 18px;
    padding: 10px 20px;
    border-radius: 0px 5px 5px 0px;;
    color: #fff;
    background-color: #2c2f34;
    margin-top: 15px;
    transition: transform 0.3s ease, background-color 0.3s ease;
    background-color: #fff;
}

/* Efectos de hover: rotación e inclinación */
.product-card:hover .product-cover img {
    transform: rotate(-5deg) translateY(-10px) scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5); /* Sombra cuando se hace hover */
}

.product-card:hover .product-button {
    transform: translateY(-5px);
}

/* Efecto hover en el botón, que afecta a la imagen también */
.product-button:hover {

    color: #000;
}

.product-button:hover + .product-cover img {
    transform: rotate(-5deg) translateY(-10px) scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}


/* Estructura de botones boton 1 */
.edition-botones3 {
    display: flex;
}

.edition-botones3 a {
    text-decoration: none;
    border: none;
    outline: none;
    cursor: pointer;
    font-size: 18px;
    padding: 10px 20px;
    border-radius: 5px 0px 0px 5px;
    color: #fff;
    background-color: #182f69;
    margin-top: 15px;
    transition: transform 0.3s ease, background-color 0.3s ease;
    border: 1px solid #182f69;
}

.product-card:hover .edition-botones3 a {
    transform: translateY(-5px);
}


.congrebot {
    color: #182f69;
    border: 1px solid #182f69;
    position: relative;
    overflow: hidden; /* Para que la animación quede dentro del botón */
    background-color: transparent;
}


.congrebot::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%; 
    width: 100%;
    height: 100%;
    background-color: #182f69;
    transition: left 0.9s ease; 
    z-index: -1;
}

.congrebot:hover::before,
.product-card:hover .congrebot::before {
    left: 0;
}

.congrebot:hover {
    color: #fff;
}


.congrebot span {
    position: relative;
    z-index: 1; 
}


.product-card:hover .congrebot {
    background-color: transparent; 
    color: #fff;
}


.product-button:hover + .product-cover img,
.product-card:hover .product-cover img {
    transform: rotate(-5deg) translateY(-10px) scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}
/* inicio Estructura de boton 1 */
.edition-botones {
    display: flex;
}

.edition-botones a {
    text-decoration: none;
    border: none;
    outline: none;
    cursor: pointer;
    font-size: 18px;
    padding: 10px 20px;
    border-radius: 5px 0px 0px 5px;
    color: #fff;
    background-color: #0cbb6a;
    margin-top: 15px;
    transition: transform 0.3s ease, background-color 0.3s ease;
    border: 1px solid #0cbb6a;
}

.product-card:hover .edition-botones a {
    transform: translateY(-5px);
}


.sensebot {
    color: #0cbb6a;
    border: 1px solid #0cbb6a;
    position: relative;
    overflow: hidden; /* Para que la animación quede dentro del botón */
    background-color: transparent;
}


.sensebot::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%; 
    width: 100%;
    height: 100%;
    background-color: #0cbb6a;
    transition: left 0.9s ease; 
    z-index: -1;
}

.sensebot:hover::before,
.product-card:hover .sensebot::before {
    left: 0;
}

.sensebot:hover {
    color: #fff;
}


.sensebot span {
    position: relative;
    z-index: 1; 
}


.product-card:hover .sensebot {
    background-color: transparent; 
    color: #fff;
}


.product-button:hover + .product-cover img,
.product-card:hover .product-cover img {
    transform: rotate(-5deg) translateY(-10px) scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}
/* fin Estructura de boton 1 */


/* Estructura de botones de azul 2 */
.edition-botones2 {
    display: flex;
}

.edition-botones2 a {
    text-decoration: none;
    border: none;
    outline: none;
    cursor: pointer;
    font-size: 18px;
    padding: 10px 20px;
    border-radius: 5px 0px 0px 5px;
    color: #fff;
    background-color: #008BFF;
    margin-top: 15px;
    transition: transform 0.3s ease, background-color 0.3s ease;
    border: 1px solid #008BFF;
}

.product-card:hover .edition-botones2 a {
    transform: translateY(-5px);
}


.deepknow {
    color: #008BFF;
    border: 1px solid #008BFF;
    position: relative;
    overflow: hidden; /* Para que la animación quede dentro del botón */
    background-color: transparent;
}


.deepknow::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%; 
    width: 100%;
    height: 100%;
    background-color: #008BFF;
    transition: left 0.9s ease; 
    z-index: -1;
}

/* Cuando se hace hover, la cortina se desplaza hacia la derecha */
.deepknow:hover::before,
.product-card:hover .deepknow::before {
    left: 0;
}

.deepknow:hover {
    color: #fff;
}


.deepknow span {
    position: relative;
    z-index: 1; 
}

/* Hover del botón relacionado con el contenedor completo */
.product-card:hover .deepknow {
    background-color: transparent; 
    color: #fff;
}


.product-button:hover + .product-cover img,
.product-card:hover .product-cover img {
    transform: rotate(-5deg) translateY(-10px) scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}
/* FIN Estructura de botones de azul 2 */

@media (max-width: 768px) {
    .edition-container {
        width: 80%;

    }
}
@media (max-width: 500px) {
    .edition-container {
        flex-direction: column;
        width: 100%;

    }

}



/* START EDICIONES ANTERIORES*/
.edition-content{
    padding-bottom: 80px;
    padding-top: 40px;
    width: 100%;
    max-width: 1450px;
    margin: 0 auto;
}
/* 2022 EDICIONES ANTERIORES*/
.congreso2022-container {
    font-family: Arial, Helvetica, sans-serif;
    padding: 20px;
    background-color: #f5f7fa;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
}

.congreso2022-container h1 {
    padding-top: 15px;
    text-align: center;
    color: #084f6f;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.download-section {
    padding-top: 15px;
    text-align: center;
    margin: 20px 0;
}

.download-btn {
    text-decoration: none;
    background-color: #084f6f;
    color: white;
    border: none;
    padding: 12px 25px;
    cursor: pointer;
    font-size: 18px;
    border-radius: 30px;
    transition: background-color 0.3s ease;
}

.download-btn:hover {
    border: 3px solid #0b618a;
    background-color: #0b628a21;
    color: #000;
}

.tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
    border-bottom: 2px solid #ddd;
}

.tablink {
    background-color: transparent;
    color: #555;
    padding: 15px 20px;
    cursor: pointer;
    font-size: 17px;
    font-weight: 600;
    border: none;
    transition: color 0.3s ease, border-bottom 0.3s ease;
}

.tablink.active {
    color: #084f6f;
    border-bottom: 4px solid #084f6f;
}

.tabcontent {
    display: none;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.active-content {
    display: block;
    opacity: 1;
}

.sala-container {
    display: flex;
    justify-content: space-around;
    gap: 20px;
    animation: fadeIn 1s ease-in-out;
}

.sala {
    text-align: center;
    flex: 1;
    background-color: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.sala:hover {
    transform: translateY(-10px);
}

.sala h2 {
    background-color: #084f6f;
    color: white;
    padding: 10px;
    border-radius: 10px;
    margin-bottom: 10px;
}

.video-stream {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    width: 100%;
    height: 400px;
    background-color: #333;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@media screen and (max-width: 768px) {
    .tabcontent{
        padding: 0px;
    }
    .sala-container {
        flex-direction: column;
    }

    .sala {
        margin-bottom: 20px;
        background-color: #f5f7fa !important;
    }
}
@media (max-width: 500px) {
    .tablink {
        font-size: 14px;
    }
    .sala{
        padding: 0px;
    }
    .video-stream {

        width: 100%;
        height: 200px;

    }
    .congreso2022-container {
        padding: 10px;
    }
}




/* 2024 EDICIONES ANTERIORES*/
.congreso2024-container {
    font-family: Arial, Helvetica, sans-serif;
    background-color: #f5f7fa;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease-in-out;
}

.congreso2024-container h1 {
    text-align: center;
    color: #004d2e;
    font-weight: 700;
    font-size: 2rem;
    margin-bottom: 40px;
    letter-spacing: 1px;
}

.download-section-2024 {
    text-align: center;
    margin: 30px 0;
}

.download-btn-2024 {
    text-decoration: none;
    background-color: #1f7a56;
    color: white;
    border: none;
    padding: 14px 40px;
    cursor: pointer;
    font-size: 18px;
    border-radius: 35px;
    transition: background-color 0.4s ease;
}

.download-btn-2024:hover {
    border: 3px solid #1f7a56;
    background-color: #268b6333;
    color: #000;
}

.tabs-2024 {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
    border-bottom: 2px solid #ddd;
}

.tablink-2024 {
    background-color: transparent;
    color: #555;
    padding: 18px 35px;
    cursor: pointer;
    font-weight: 600;
    font-size: 18px;
    border: none;
    transition: color 0.9s ease, border-bottom 0.4s ease;
}

.tablink-2024.active {
    color: #1f7a56;

    border-bottom: 4px solid #1f7a56;
}

.tabcontent-2024 {
    display: none;
    padding: 30px;
    opacity: 0;
    transition: opacity 0.7s ease;
}

.active-content-2024 {
    display: block;
    opacity: 1;
}

.sala-container-2024 {
    display: flex;
    justify-content: space-around;
    gap: 30px;
    animation: slideIn 1.2s ease-in-out;
}

.sala-2024 {
    text-align: center;
    flex: 1;
    background-color: #ffffff;
    padding: 25px;
    border-radius: 25px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease;
}

.sala-2024:hover {
    transform: translateY(-15px);
}

.sala-2024 h2 {
    background-color: #1f7a56;
    color: white;
    padding: 12px;
    border-radius: 12px;
    margin-bottom: 15px;
}

.video-stream-2024 {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
    width: 100%;
    height: 250px;
    background-color: #333;
}

@keyframes slideIn {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@media screen and (max-width: 768px) {
    .sala-container-2024 {
        flex-direction: column;
    }
    .congreso2024-container {

        padding: 0px;

    }
    .sala-2024 {
        padding: 10px;
        margin-bottom: 0px;
    }
    .tabcontent-2024 {
        padding: 0px; 
    }
}

/* 2025 EDICIONES ANTERIORES*/
.congreso2025-container {
    font-family: Arial, Helvetica, sans-serif;
    background-color: #f5f7fa;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease-in-out;
}

.congreso2025-container h1 {
    text-align: center;
    color: #182f69;
    font-weight: 700;
    font-size: 2rem;
    margin-bottom: 40px;
    letter-spacing: 1px;
}

.download-section-2025 {
    text-align: center;
    margin: 30px 0;
}

.download-btn-2025 {
    text-decoration: none;
    background-color: #182f69;
    color: white;
    border: none;
    padding: 14px 40px;
    cursor: pointer;
    font-size: 18px;
    border-radius: 35px;
    transition: background-color 0.4s ease;
}

.download-btn-2025:hover {
    border: 3px solid #182f69;
    background-color: #268b6333;
    color: #000;
}

.tabs-2025 {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
    border-bottom: 2px solid #ddd;
}

.tablink-2025 {
    background-color: transparent;
    color: #555;
    padding: 18px 35px;
    cursor: pointer;
    font-weight: 600;
    font-size: 18px;
    border: none;
    transition: color 0.9s ease, border-bottom 0.4s ease;
}

.tablink-2025.active {
    color: #182f69;

    border-bottom: 4px solid #182f69;
}

.tabcontent-2025 {
    display: none;
    padding: 30px;
    opacity: 0;
    transition: opacity 0.7s ease;
}

.active-content-2025 {
    display: block;
    opacity: 1;
}

.sala-container-2025 {
    display: flex;
    justify-content: space-around;
    gap: 30px;
    animation: slideIn 1.2s ease-in-out;
}

.sala-2025 {
    text-align: center;
    flex: 1;
    background-color: #ffffff;
    padding: 25px;
    border-radius: 25px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease;
}

.sala-2025:hover {
    transform: translateY(-15px);
}

.sala-2025 h2 {
    background-color: #182f69;
    color: white;
    padding: 12px;
    border-radius: 12px;
    margin-bottom: 15px;
}

.video-stream-2025 {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
    width: 100%;
    height: 250px;
    background-color: #333;
}

@keyframes slideIn {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@media screen and (max-width: 768px) {
    .sala-container-2025 {
        flex-direction: column;
    }
    .congreso2025-container {

        padding: 0px;

    }
    .sala-2025 {
        padding: 10px;
        margin-bottom: 0px;
    }
    .tabcontent-2025 {
        padding: 0px; 
    }
}



/* FIN EDICIONES ANTERIORES*/