.u-section-1 {
  background-image: url("images/BannerGeneral.webp");
  background-position: 50% 50%;
}

.u-section-1 .u-sheet-1 {
  min-height: 400px;
}

.u-section-1 .u-text-1 {
  font-size: 2.25rem;
  font-weight: 600;
  margin: 60px auto 60px 121px;
}

@media (max-width: 1199px) {
  .u-section-1 .u-sheet-1 {
    min-height: 330px;
  }
}

@media (max-width: 991px) {
  .u-section-1 .u-sheet-1 {
    min-height: 253px;
  }
}

@media (max-width: 767px) {
  .u-section-1 .u-sheet-1 {
    min-height: 190px;
  }
}

@media (max-width: 575px) {
  .u-section-1 .u-sheet-1 {
    min-height: 120px;
  }

  .u-section-1 .u-text-1 {
    font-size: 1.875rem;
    margin-left: 76px;
  }
}/* Estilos para la sección de eventos EdoMex */
#evento-especial {
    margin-top: 20px;
    padding: 40px 0;
}

#evento-especial .u-sheet-1 {
    min-height: auto;
    padding: 0 20px;
}

/* Container principal para los eventos */
.eventos-edomex-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

/* Tarjetas de eventos */
.evento-card {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.evento-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

/* Imágenes de eventos */
.evento-image {
    width: 100%;
    height: auto;
    max-width: 350px;
    aspect-ratio: 1080/1350;
    object-fit: cover;
    border-radius: 15px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.evento-image:hover {
    transform: scale(1.02);
}

/* Limpieza de estilos antiguos de u-section-2 para eventos */
.u-section-2 .u-sheet-1 {
  min-height: auto;
}

/* Estilos específicos para el Proyecto EdoMex */
#evento-proyecto-edomex {
    padding: 20px 0;
}

.proyecto-edomex-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.proyecto-edomex-image {
    max-width: 250px;
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.proyecto-edomex-image:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

/* Responsive para la imagen del proyecto */
@media (max-width: 768px) {
    .proyecto-edomex-image {
        max-width: 200px;
    }
}

@media (max-width: 480px) {
    .proyecto-edomex-image {
        max-width: 180px;
    }
    
    #evento-proyecto-edomex {
        padding: 15px 0;
    }
}.u-section-3 .u-sheet-1 {
  min-height: 400px;
}

.u-section-3 .u-layout-wrap-1 {
  margin-top: 60px;
  margin-bottom: 60px;
  position: relative;
}

.u-section-3 .u-layout-cell-1 {
  min-height: 400px;
}

.u-section-3 .u-container-layout-1 {
  padding: 10px 30px;
}

.u-section-3 .u-image-1 {
  width: 295px;
  height: 295px;
  --radius: 20px;
  margin: 20px auto 0;
}

.u-section-3 .u-layout-cell-2 {
  min-height: 400px;
}

.u-section-3 .u-container-layout-2 {
  padding: 30px;
}

.u-section-3 .u-text-1 {
  font-weight: 400;
  margin-bottom: 0;
  margin-top: 0;
}

@media (max-width: 1199px) {
  .u-section-3 .u-sheet-1 {
    min-height: 330px;
  }

  .u-section-3 .u-layout-cell-1 {
    min-height: 330px;
  }

  .u-section-3 .u-layout-cell-2 {
    min-height: 330px;
  }
}

@media (max-width: 991px) {
  .u-section-3 .u-sheet-1 {
    min-height: 253px;
  }

  .u-section-3 .u-layout-cell-1 {
    min-height: 463px;
  }

  .u-section-3 .u-image-1 {
    margin-top: 0;
  }

  .u-section-3 .u-layout-cell-2 {
    min-height: 100px;
  }
}

@media (max-width: 767px) {
  .u-section-3 .u-sheet-1 {
    min-height: 760px;
  }

  .u-section-3 .u-layout-cell-1 {
    min-height: 695px;
  }

  .u-section-3 .u-container-layout-1 {
    padding-left: 10px;
    padding-right: 10px;
  }

  .u-section-3 .u-container-layout-2 {
    padding-left: 10px;
    padding-right: 10px;
  }
}

@media (max-width: 575px) {
  .u-section-3 .u-sheet-1 {
    min-height: 478px;
  }

  .u-section-3 .u-layout-cell-1 {
    min-height: 438px;
  }
}


/* Estilos para el Modal */
.u-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.8);
}

.u-modal-content {
    background-color: #fff;
    margin: 5% auto;
    padding: 20px;
    border-radius: 20px;
    width: 80%;
    max-width: 600px;
    position: relative;
}

.u-modal-close {
    color: #002654;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.u-modal-close:hover {
    color: #004AAD;
}

.u-modal-text {
    padding: 20px;
    line-height: 1.6;
}

.u-modal-text a {
    color: #002654;
    text-decoration: none;
    font-weight: bold;
}

.u-modal-text a:hover {
    color: #004AAD;
}

/* Responsive design para diferentes tamaños de pantalla */
@media (max-width: 768px) {
    .eventos-edomex-container {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 15px;
    }
    
    .evento-image {
        max-width: 280px;
    }
    
    #evento-especial {
        padding: 30px 0;
    }
}

@media (max-width: 480px) {
    .eventos-edomex-container {
        gap: 15px;
        padding: 10px;
    }
    
    .evento-image {
        max-width: 250px;
    }
    
    .evento-card {
        border-radius: 15px;
    }
    
    #evento-especial {
        padding: 20px 0;
    }
}

@media (min-width: 1200px) {
    .eventos-edomex-container {
        grid-template-columns: repeat(2, 1fr);
        max-width: 900px;
        gap: 40px;
    }
    
    .evento-image {
        max-width: 380px;
    }
}


@keyframes pulso {
    0% { opacity: 1; }
    50% { opacity: 0.8; }
    100% { opacity: 1; }
}

.u-section-titulo-eventos {
    padding: 0;
    margin-bottom: -20px;
}

.u-section-titulo-eventos .u-text-1 {
    font-size: 2rem;
    font-weight: 600;
    margin: 10px auto 0;
    text-align: center;
}

.u-section-titulo-eventos .u-text-2 {
    font-size: 1.1rem;
    margin: 0 auto 10px;
    text-align: center;
    color: #666666;
}

@media (max-width: 575px) {
    .u-section-titulo-eventos .u-text-1 {
        font-size: 1.5rem;
    }
    
    .u-section-titulo-eventos .u-text-2 {
        font-size: 1rem;
    }
}


/* Estilos para el Modal */
.u-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.8);
}

.u-modal-content {
    background-color: #fff;
    margin: 5% auto;
    padding: 20px;
    border-radius: 20px;
    width: 80%;
    max-width: 600px;
    position: relative;
}

.u-modal-close {
    color: #002654;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.u-modal-close:hover {
    color: #004AAD;
}

.u-modal-text {
    padding: 20px;
    line-height: 1.6;
}

.u-modal-text a {
    color: #002654;
    text-decoration: none;
    font-weight: bold;
}

.u-modal-text a:hover {
    color: #004AAD;
}

.evento-trigger {
    cursor: pointer;
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.evento-trigger:hover {
    transform: scale(1.02);
    animation: pulso 1.5s infinite;
}

@keyframes pulso {
    0% { opacity: 1; }
    50% { opacity: 0.8; }
    100% { opacity: 1; }
}

.u-section-titulo-eventos {
    padding: 0;
    margin-bottom: -20px;
}

.u-section-titulo-eventos .u-text-1 {
    font-size: 2rem;
    font-weight: 600;
    margin: 10px auto 0;
    text-align: center;
}

.u-section-titulo-eventos .u-text-2 {
    font-size: 1.1rem;
    margin: 0 auto 10px;
    text-align: center;
    color: #666666;
}

@media (max-width: 575px) {
    .u-section-titulo-eventos .u-text-1 {
        font-size: 1.5rem;
    }
    
    .u-section-titulo-eventos .u-text-2 {
        font-size: 1rem;
    }
}


/* Estilos para el Modal */
.u-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.8);
}

.u-modal-content {
    background-color: #fff;
    margin: 5% auto;
    padding: 20px;
    border-radius: 20px;
    width: 80%;
    max-width: 600px;
    position: relative;
}

.u-modal-close {
    color: #002654;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.u-modal-close:hover {
    color: #004AAD;
}

.u-modal-text {
    padding: 20px;
    line-height: 1.6;
}

.u-modal-text a {
    color: #002654;
    text-decoration: none;
    font-weight: bold;
}

.u-modal-text a:hover {
    color: #004AAD;
}

.evento-trigger {
    cursor: pointer;
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.evento-trigger:hover {
    transform: scale(1.02);
    animation: pulso 1.5s infinite;
}

@keyframes pulso {
    0% { opacity: 1; }
    50% { opacity: 0.8; }
    100% { opacity: 1; }
}

.u-section-titulo-eventos {
    padding: 0;
    margin-bottom: -20px;
}

.u-section-titulo-eventos .u-text-1 {
    font-size: 2rem;
    font-weight: 600;
    margin: 10px auto 0;
    text-align: center;
}

.u-section-titulo-eventos .u-text-2 {
    font-size: 1.1rem;
    margin: 0 auto 10px;
    text-align: center;
    color: #666666;
}

@media (max-width: 575px) {
    .u-section-titulo-eventos .u-text-1 {
        font-size: 1.5rem;
    }
    
    .u-section-titulo-eventos .u-text-2 {
        font-size: 1rem;
    }
}


/* Estilos para el Modal */
.u-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.8);
}

.u-modal-content {
    background-color: #fff;
    margin: 5% auto;
    padding: 20px;
    border-radius: 20px;
    width: 80%;
    max-width: 600px;
    position: relative;
}

.u-modal-close {
    color: #002654;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.u-modal-close:hover {
    color: #004AAD;
}

.u-modal-text {
    padding: 20px;
    line-height: 1.6;
}

.u-modal-text a {
    color: #002654;
    text-decoration: none;
    font-weight: bold;
}

.u-modal-text a:hover {
    color: #004AAD;
}

.evento-trigger {
    cursor: pointer;
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.evento-trigger:hover {
    transform: scale(1.02);
    animation: pulso 1.5s infinite;
}

@keyframes pulso {
    0% { opacity: 1; }
    50% { opacity: 0.8; }
    100% { opacity: 1; }
}

.u-section-titulo-eventos {
    padding: 0;
    margin-bottom: -20px;
}

.u-section-titulo-eventos .u-text-1 {
    font-size: 2rem;
    font-weight: 600;
    margin: 10px auto 0;
    text-align: center;
}

.u-section-titulo-eventos .u-text-2 {
    font-size: 1.1rem;
    margin: 0 auto 10px;
    text-align: center;
    color: #666666;
}

@media (max-width: 575px) {
    .u-section-titulo-eventos .u-text-1 {
        font-size: 1.5rem;
    }
    
    .u-section-titulo-eventos .u-text-2 {
        font-size: 1rem;
    }
}


/* Estilos para el Modal */
.u-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.8);
}

.u-modal-content {
    background-color: #fff;
    margin: 5% auto;
    padding: 20px;
    border-radius: 20px;
    width: 80%;
    max-width: 600px;
    position: relative;
}

.u-modal-close {
    color: #002654;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.u-modal-close:hover {
    color: #004AAD;
}

.u-modal-text {
    padding: 20px;
    line-height: 1.6;
}

.u-modal-text a {
    color: #002654;
    text-decoration: none;
    font-weight: bold;
}

.u-modal-text a:hover {
    color: #004AAD;
}

.evento-trigger {
    cursor: pointer;
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.evento-trigger:hover {
    transform: scale(1.02);
    animation: pulso 1.5s infinite;
}

@keyframes pulso {
    0% { opacity: 1; }
    50% { opacity: 0.8; }
    100% { opacity: 1; }
}

.u-section-titulo-eventos {
    padding: 0;
    margin-bottom: -20px;
}

.u-section-titulo-eventos .u-text-1 {
    font-size: 2rem;
    font-weight: 600;
    margin: 10px auto 0;
    text-align: center;
}

.u-section-titulo-eventos .u-text-2 {
    font-size: 1.1rem;
    margin: 0 auto 10px;
    text-align: center;
    color: #666666;
}

@media (max-width: 575px) {
    .u-section-titulo-eventos .u-text-1 {
        font-size: 1.5rem;
    }
    
    .u-section-titulo-eventos .u-text-2 {
        font-size: 1rem;
    }
}


/* Estilos para el Modal */
.u-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.8);
}

.u-modal-content {
    background-color: #fff;
    margin: 5% auto;
    padding: 20px;
    border-radius: 20px;
    width: 80%;
    max-width: 600px;
    position: relative;
}

.u-modal-close {
    color: #002654;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.u-modal-close:hover {
    color: #004AAD;
}

.u-modal-text {
    padding: 20px;
    line-height: 1.6;
}

.u-modal-text a {
    color: #002654;
    text-decoration: none;
    font-weight: bold;
}

.u-modal-text a:hover {
    color: #004AAD;
}

.evento-trigger {
    cursor: pointer;
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.evento-trigger:hover {
    transform: scale(1.02);
    animation: pulso 1.5s infinite;
}

@keyframes pulso {
    0% { opacity: 1; }
    50% { opacity: 0.8; }
    100% { opacity: 1; }
}

.u-section-titulo-eventos {
    padding: 0;
    margin-bottom: -20px;
}

.u-section-titulo-eventos .u-text-1 {
    font-size: 2rem;
    font-weight: 600;
    margin: 10px auto 0;
    text-align: center;
}

.u-section-titulo-eventos .u-text-2 {
    font-size: 1.1rem;
    margin: 0 auto 10px;
    text-align: center;
    color: #666666;
}

@media (max-width: 575px) {
    .u-section-titulo-eventos .u-text-1 {
        font-size: 1.5rem;
    }
    
    .u-section-titulo-eventos .u-text-2 {
        font-size: 1rem;
    }
}


/* Estilos para el Modal */
.u-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.8);
}

.u-modal-content {
    background-color: #fff;
    margin: 5% auto;
    padding: 20px;
    border-radius: 20px;
    width: 80%;
    max-width: 600px;
    position: relative;
}

.u-modal-close {
    color: #002654;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.u-modal-close:hover {
    color: #004AAD;
}

.u-modal-text {
    padding: 20px;
    line-height: 1.6;
}

.u-modal-text a {
    color: #002654;
    text-decoration: none;
    font-weight: bold;
}

.u-modal-text a:hover {
    color: #004AAD;
}

.evento-trigger {
    cursor: pointer;
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.evento-trigger:hover {
    transform: scale(1.02);
    animation: pulso 1.5s infinite;
}

@keyframes pulso {
    0% { opacity: 1; }
    50% { opacity: 0.8; }
    100% { opacity: 1; }
}

.u-section-titulo-eventos {
    padding: 0;
    margin-bottom: -20px;
}

.u-section-titulo-eventos .u-text-1 {
    font-size: 2rem;
    font-weight: 600;
    margin: 10px auto 0;
    text-align: center;
}

.u-section-titulo-eventos .u-text-2 {
    font-size: 1.1rem;
    margin: 0 auto 10px;
    text-align: center;
    color: #666666;
}

@media (max-width: 575px) {
    .u-section-titulo-eventos .u-text-1 {
        font-size: 1.5rem;
    }
    
    .u-section-titulo-eventos .u-text-2 {
        font-size: 1rem;
    }
}


/* Estilos para el Modal */
.u-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.8);
}

.u-modal-content {
    background-color: #fff;
    margin: 5% auto;
    padding: 20px;
    border-radius: 20px;
    width: 80%;
    max-width: 600px;
    position: relative;
}

.u-modal-close {
    color: #002654;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.u-modal-close:hover {
    color: #004AAD;
}

.u-modal-text {
    padding: 20px;
    line-height: 1.6;
}

.u-modal-text a {
    color: #002654;
    text-decoration: none;
    font-weight: bold;
}

.u-modal-text a:hover {
    color: #004AAD;
}

.evento-trigger {
    cursor: pointer;
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.evento-trigger:hover {
    transform: scale(1.02);
    animation: pulso 1.5s infinite;
}

@keyframes pulso {
    0% { opacity: 1; }
    50% { opacity: 0.8; }
    100% { opacity: 1; }
}

.u-section-titulo-eventos {
    padding: 0;
    margin-bottom: -20px;
}

.u-section-titulo-eventos .u-text-1 {
    font-size: 2rem;
    font-weight: 600;
    margin: 10px auto 0;
    text-align: center;
}

.u-section-titulo-eventos .u-text-2 {
    font-size: 1.1rem;
    margin: 0 auto 10px;
    text-align: center;
    color: #666666;
}

@media (max-width: 575px) {
    .u-section-titulo-eventos .u-text-1 {
        font-size: 1.5rem;
    }
    
    .u-section-titulo-eventos .u-text-2 {
        font-size: 1rem;
    }
}


/* Estilos para el Modal */
.u-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.8);
}

.u-modal-content {
    background-color: #fff;
    margin: 5% auto;
    padding: 20px;
    border-radius: 20px;
    width: 80%;
    max-width: 600px;
    position: relative;
}

.u-modal-close {
    color: #002654;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.u-modal-close:hover {
    color: #004AAD;
}

.u-modal-text {
    padding: 20px;
    line-height: 1.6;
}

.u-modal-text a {
    color: #002654;
    text-decoration: none;
    font-weight: bold;
}

.u-modal-text a:hover {
    color: #004AAD;
}

.evento-trigger {
    cursor: pointer;
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.evento-trigger:hover {
    transform: scale(1.02);
    animation: pulso 1.5s infinite;
}

@keyframes pulso {
    0% { opacity: 1; }
    50% { opacity: 0.8; }
    100% { opacity: 1; }
}

.u-section-titulo-eventos {
    padding: 0;
    margin-bottom: -20px;
}

.u-section-titulo-eventos .u-text-1 {
    font-size: 2rem;
    font-weight: 600;
    margin: 10px auto 0;
    text-align: center;
}

.u-section-titulo-eventos .u-text-2 {
    font-size: 1.1rem;
    margin: 0 auto 10px;
    text-align: center;
    color: #666666;
}

@media (max-width: 575px) {
    .u-section-titulo-eventos .u-text-1 {
        font-size: 1.5rem;
    }
    
    .u-section-titulo-eventos .u-text-2 {
        font-size: 1rem;
    }
}


/* Estilos para el Modal */
.u-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.8);
}

.u-modal-content {
    background-color: #fff;
    margin: 5% auto;
    padding: 20px;
    border-radius: 20px;
    width: 80%;
    max-width: 600px;
    position: relative;
}

.u-modal-close {
    color: #002654;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.u-modal-close:hover {
    color: #004AAD;
}

.u-modal-text {
    padding: 20px;
    line-height: 1.6;
}

.u-modal-text a {
    color: #002654;
    text-decoration: none;
    font-weight: bold;
}

.u-modal-text a:hover {
    color: #004AAD;
}

.evento-trigger {
    cursor: pointer;
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.evento-trigger:hover {
    transform: scale(1.02);
    animation: pulso 1.5s infinite;
}

@keyframes pulso {
    0% { opacity: 1; }
    50% { opacity: 0.8; }
    100% { opacity: 1; }
}

.u-section-titulo-eventos {
    padding: 0;
    margin-bottom: -20px;
}

.u-section-titulo-eventos .u-text-1 {
    font-size: 2rem;
    font-weight: 600;
    margin: 10px auto 0;
    text-align: center;
}

.u-section-titulo-eventos .u-text-2 {
    font-size: 1.1rem;
    margin: 0 auto 10px;
    text-align: center;
    color: #666666;
}

@media (max-width: 575px) {
    .u-section-titulo-eventos .u-text-1 {
        font-size: 1.5rem;
    }
    
    .u-section-titulo-eventos .u-text-2 {
        font-size: 1rem;
    }
}


/* Estilos para el Modal */
.u-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.8);
}

.u-modal-content {
    background-color: #fff;
    margin: 5% auto;
    padding: 20px;
    border-radius: 20px;
    width: 80%;
    max-width: 600px;
    position: relative;
}

.u-modal-close {
    color: #002654;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.u-modal-close:hover {
    color: #004AAD;
}

.u-modal-text {
    padding: 20px;
    line-height: 1.6;
}

.u-modal-text a {
    color: #002654;
    text-decoration: none;
    font-weight: bold;
}

.u-modal-text a:hover {
    color: #004AAD;
}

.evento-trigger {
    cursor: pointer;
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.evento-trigger:hover {
    transform: scale(1.02);
    animation: pulso 1.5s infinite;
}

@keyframes pulso {
    0% { opacity: 1; }
    50% { opacity: 0.8; }
    100% { opacity: 1; }
}

.u-section-titulo-eventos {
    padding: 0;
    margin-bottom: -20px;
}

.u-section-titulo-eventos .u-text-1 {
    font-size: 2rem;
    font-weight: 600;
    margin: 10px auto 0;
    text-align: center;
}

.u-section-titulo-eventos .u-text-2 {
    font-size: 1.1rem;
    margin: 0 auto 10px;
    text-align: center;
    color: #666666;
}

@media (max-width: 575px) {
    .u-section-titulo-eventos .u-text-1 {
        font-size: 1.5rem;
    }
    
    .u-section-titulo-eventos .u-text-2 {
        font-size: 1rem;
    }
}


/* Estilos para el Modal */
.u-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.8);
}

.u-modal-content {
    background-color: #fff;
    margin: 5% auto;
    padding: 20px;
    border-radius: 20px;
    width: 80%;
    max-width: 600px;
    position: relative;
}

.u-modal-close {
    color: #002654;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.u-modal-close:hover {
    color: #004AAD;
}

.u-modal-text {
    padding: 20px;
    line-height: 1.6;
}

.u-modal-text a {
    color: #002654;
    text-decoration: none;
    font-weight: bold;
}

.u-modal-text a:hover {
    color: #004AAD;
}

.evento-trigger {
    cursor: pointer;
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.evento-trigger:hover {
    transform: scale(1.02);
    animation: pulso 1.5s infinite;
}

@keyframes pulso {
    0% { opacity: 1; }
    50% { opacity: 0.8; }
    100% { opacity: 1; }
}

.u-section-titulo-eventos {
    padding: 0;
    margin-bottom: -20px;
}

.u-section-titulo-eventos .u-text-1 {
    font-size: 2rem;
    font-weight: 600;
    margin: 10px auto 0;
    text-align: center;
}

.u-section-titulo-eventos .u-text-2 {
    font-size: 1.1rem;
    margin: 0 auto 10px;
    text-align: center;
    color: #666666;
}

@media (max-width: 575px) {
    .u-section-titulo-eventos .u-text-1 {
        font-size: 1.5rem;
    }
    
    .u-section-titulo-eventos .u-text-2 {
        font-size: 1rem;
    }
}


/* Estilos para el Modal */
.u-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.8);
}

.u-modal-content {
    background-color: #fff;
    margin: 5% auto;
    padding: 20px;
    border-radius: 20px;
    width: 80%;
    max-width: 600px;
    position: relative;
}

.u-modal-close {
    color: #002654;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.u-modal-close:hover {
    color: #004AAD;
}

.u-modal-text {
    padding: 20px;
    line-height: 1.6;
}

.u-modal-text a {
    color: #002654;
    text-decoration: none;
    font-weight: bold;
}

.u-modal-text a:hover {
    color: #004AAD;
}

.evento-trigger {
    cursor: pointer;
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.evento-trigger:hover {
    transform: scale(1.02);
    animation: pulso 1.5s infinite;
}

@keyframes pulso {
    0% { opacity: 1; }
    50% { opacity: 0.8; }
    100% { opacity: 1; }
}

.u-section-titulo-eventos {
    padding: 0;
    margin-bottom: -20px;
}

.u-section-titulo-eventos .u-text-1 {
    font-size: 2rem;
    font-weight: 600;
    margin: 10px auto 0;
    text-align: center;
}

.u-section-titulo-eventos .u-text-2 {
    font-size: 1.1rem;
    margin: 0 auto 10px;
    text-align: center;
    color: #666666;
}

@media (max-width: 575px) {
    .u-section-titulo-eventos .u-text-1 {
        font-size: 1.5rem;
    }
    
    .u-section-titulo-eventos .u-text-2 {
        font-size: 1rem;
    }
}


/* Estilos para el Modal */
.u-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.8);
}

.u-modal-content {
    background-color: #fff;
    margin: 5% auto;
    padding: 20px;
    border-radius: 20px;
    width: 80%;
    max-width: 600px;
    position: relative;
}

.u-modal-close {
    color: #002654;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.u-modal-close:hover {
    color: #004AAD;
}

.u-modal-text {
    padding: 20px;
    line-height: 1.6;
}

.u-modal-text a {
    color: #002654;
    text-decoration: none;
    font-weight: bold;
}

.u-modal-text a:hover {
    color: #004AAD;
}

.evento-trigger {
    cursor: pointer;
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.evento-trigger:hover {
    transform: scale(1.02);
    animation: pulso 1.5s infinite;
}

@keyframes pulso {
    0% { opacity: 1; }
    50% { opacity: 0.8; }
    100% { opacity: 1; }
}

.u-section-titulo-eventos {
    padding: 0;
    margin-bottom: -20px;
}

.u-section-titulo-eventos .u-text-1 {
    font-size: 2rem;
    font-weight: 600;
    margin: 10px auto 0;
    text-align: center;
}

.u-section-titulo-eventos .u-text-2 {
    font-size: 1.1rem;
    margin: 0 auto 10px;
    text-align: center;
    color: #666666;
}

@media (max-width: 575px) {
    .u-section-titulo-eventos .u-text-1 {
        font-size: 1.5rem;
    }
    
    .u-section-titulo-eventos .u-text-2 {
        font-size: 1rem;
    }
}


/* Estilos para el Modal */
.u-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.8);
}

.u-modal-content {
    background-color: #fff;
    margin: 5% auto;
    padding: 20px;
    border-radius: 20px;
    width: 80%;
    max-width: 600px;
    position: relative;
}

.u-modal-close {
    color: #002654;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.u-modal-close:hover {
    color: #004AAD;
}

.u-modal-text {
    padding: 20px;
    line-height: 1.6;
}

.u-modal-text a {
    color: #002654;
    text-decoration: none;
    font-weight: bold;
}

.u-modal-text a:hover {
    color: #004AAD;
}

.evento-trigger {
    cursor: pointer;
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.evento-trigger:hover {
    transform: scale(1.02);
    animation: pulso 1.5s infinite;
}

@keyframes pulso {
    0% { opacity: 1; }
    50% { opacity: 0.8; }
    100% { opacity: 1; }
}

.u-section-titulo-eventos {
    padding: 0;
    margin-bottom: -20px;
}

.u-section-titulo-eventos .u-text-1 {
    font-size: 2rem;
    font-weight: 600;
    margin: 10px auto 0;
    text-align: center;
}

.u-section-titulo-eventos .u-text-2 {
    font-size: 1.1rem;
    margin: 0 auto 10px;
    text-align: center;
    color: #666666;
}

@media (max-width: 575px) {
    .u-section-titulo-eventos .u-text-1 {
        font-size: 1.5rem;
    }
    
    .u-section-titulo-eventos .u-text-2 {
        font-size: 1rem;
    }
}


/* Estilos para el Modal */
.u-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.8);
}

.u-modal-content {
    background-color: #fff;
    margin: 5% auto;
    padding: 20px;
    border-radius: 20px;
    width: 80%;
    max-width: 600px;
    position: relative;
}

.u-modal-close {
    color: #002654;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.u-modal-close:hover {
    color: #004AAD;
}

.u-modal-text {
    padding: 20px;
    line-height: 1.6;
}

.u-modal-text a {
    color: #002654;
    text-decoration: none;
    font-weight: bold;
}

.u-modal-text a:hover {
    color: #004AAD;
}

.evento-trigger {
    cursor: pointer;
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.evento-trigger:hover {
    transform: scale(1.02);
    animation: pulso 1.5s infinite;
}

@keyframes pulso {
    0% { opacity: 1; }
    50% { opacity: 0.8; }
    100% { opacity: 1; }
}

.u-section-titulo-eventos {
    padding: 0;
    margin-bottom: -20px;
}

.u-section-titulo-eventos .u-text-1 {
    font-size: 2rem;
    font-weight: 600;
    margin: 10px auto 0;
    text-align: center;
}

.u-section-titulo-eventos .u-text-2 {
    font-size: 1.1rem;
    margin: 0 auto 10px;
    text-align: center;
    color: #666666;
}

@media (max-width: 575px) {
    .u-section-titulo-eventos .u-text-1 {
        font-size: 1.5rem;
    }
    
    .u-section-titulo-eventos .u-text-2 {
        font-size: 1rem;
    }
}


/* Estilos para el Modal */
.u-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.8);
}

.u-modal-content {
    background-color: #fff;
    margin: 5% auto;
    padding: 20px;
    border-radius: 20px;
    width: 80%;
    max-width: 600px;
    position: relative;
}

.u-modal-close {
    color: #002654;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.u-modal-close:hover {
    color: #004AAD;
}

.u-modal-text {
    padding: 20px;
    line-height: 1.6;
}

.u-modal-text a {
    color: #002654;
    text-decoration: none;
    font-weight: bold;
}

.u-modal-text a:hover {
    color: #004AAD;
}

.evento-trigger {
    cursor: pointer;
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.evento-trigger:hover {
    transform: scale(1.02);
    animation: pulso 1.5s infinite;
}

@keyframes pulso {
    0% { opacity: 1; }
    50% { opacity: 0.8; }
    100% { opacity: 1; }
}

.u-section-titulo-eventos {
    padding: 0;
    margin-bottom: -20px;
}

.u-section-titulo-eventos .u-text-1 {
    font-size: 2rem;
    font-weight: 600;
    margin: 10px auto 0;
    text-align: center;
}

.u-section-titulo-eventos .u-text-2 {
    font-size: 1.1rem;
    margin: 0 auto 10px;
    text-align: center;
    color: #666666;
}

@media (max-width: 575px) {
    .u-section-titulo-eventos .u-text-1 {
        font-size: 1.5rem;
    }
    
    .u-section-titulo-eventos .u-text-2 {
        font-size: 1rem;
    }
}


/* Estilos para el Modal */
.u-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.8);
}

.u-modal-content {
    background-color: #fff;
    margin: 5% auto;
    padding: 20px;
    border-radius: 20px;
    width: 80%;
    max-width: 600px;
    position: relative;
}

.u-modal-close {
    color: #002654;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.u-modal-close:hover {
    color: #004AAD;
}

.u-modal-text {
    padding: 20px;
    line-height: 1.6;
}

.u-modal-text a {
    color: #002654;
    text-decoration: none;
    font-weight: bold;
}

.u-modal-text a:hover {
    color: #004AAD;
}

.evento-trigger {
    cursor: pointer;
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.evento-trigger:hover {
    transform: scale(1.02);
    animation: pulso 1.5s infinite;
}

@keyframes pulso {
    0% { opacity: 1; }
    50% { opacity: 0.8; }
    100% { opacity: 1; }
}

.u-section-titulo-eventos {
    padding: 0;
    margin-bottom: -20px;
}

.u-section-titulo-eventos .u-text-1 {
    font-size: 2rem;
    font-weight: 600;
    margin: 10px auto 0;
    text-align: center;
}

.u-section-titulo-eventos .u-text-2 {
    font-size: 1.1rem;
    margin: 0 auto 10px;
    text-align: center;
    color: #666666;
}

@media (max-width: 575px) {
    .u-section-titulo-eventos .u-text-1 {
        font-size: 1.5rem;
    }
    
    .u-section-titulo-eventos .u-text-2 {
        font-size: 1rem;
    }
}


/* Estilos para el Modal */
.u-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.8);
}

.u-modal-content {
    background-color: #fff;
    margin: 5% auto;
    padding: 20px;
    border-radius: 20px;
    width: 80%;
    max-width: 600px;
    position: relative;
}

.u-modal-close {
    color: #002654;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.u-modal-close:hover {
    color: #004AAD;
}

.u-modal-text {
    padding: 20px;
    line-height: 1.6;
}

.u-modal-text a {
    color: #002654;
    text-decoration: none;
    font-weight: bold;
}

.u-modal-text a:hover {
    color: #004AAD;
}

.evento-trigger {
    cursor: pointer;
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.evento-trigger:hover {
    transform: scale(1.02);
    animation: pulso 1.5s infinite;
}

@keyframes pulso {
    0% { opacity: 1; }
    50% { opacity: 0.8; }
    100% { opacity: 1; }
}

.u-section-titulo-eventos {
    padding: 0;
    margin-bottom: -20px;
}

.u-section-titulo-eventos .u-text-1 {
    font-size: 2rem;
    font-weight: 600;
    margin: 10px auto 0;
    text-align: center;
}

.u-section-titulo-eventos .u-text-2 {
    font-size: 1.1rem;
    margin: 0 auto 10px;
    text-align: center;
    color: #666666;
}

@media (max-width: 575px) {
    .u-section-titulo-eventos .u-text-1 {
        font-size: 1.5rem;
    }
    
    .u-section-titulo-eventos .u-text-2 {
        font-size: 1rem;
    }
}


/* Estilos para el Modal */
.u-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.8);
}

.u-modal-content {
    background-color: #fff;
    margin: 5% auto;
    padding: 20px;
    border-radius: 20px;
    width: 80%;
    max-width: 600px;
    position: relative;
}

.u-modal-close {
    color: #002654;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.u-modal-close:hover {
    color: #004AAD;
}

.u-modal-text {
    padding: 20px;
    line-height: 1.6;
}

.u-modal-text a {
    color: #002654;
    text-decoration: none;
    font-weight: bold;
}

.u-modal-text a:hover {
    color: #004AAD;
}

.evento-trigger {
    cursor: pointer;
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.evento-trigger:hover {
    transform: scale(1.02);
    animation: pulso 1.5s infinite;
}

@keyframes pulso {
    0% { opacity: 1; }
    50% { opacity: 0.8; }
    100% { opacity: 1; }
}

.u-section-titulo-eventos {
    padding: 0;
    margin-bottom: -20px;
}

.u-section-titulo-eventos .u-text-1 {
    font-size: 2rem;
    font-weight: 600;
    margin: 10px auto 0;
    text-align: center;
}

.u-section-titulo-eventos .u-text-2 {
    font-size: 1.1rem;
    margin: 0 auto 10px;
    text-align: center;
    color: #666666;
}

@media (max-width: 575px) {
    .u-section-titulo-eventos .u-text-1 {
        font-size: 1.5rem;
    }
    
    .u-section-titulo-eventos .u-text-2 {
        font-size: 1rem;
    }
}


/* Estilos para el Modal */
.u-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.8);
}

.u-modal-content {
    background-color: #fff;
    margin: 5% auto;
    padding: 20px;
    border-radius: 20px;
    width: 80%;
    max-width: 600px;
    position: relative;
}

.u-modal-close {
    color: #002654;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.u-modal-close:hover {
    color: #004AAD;
}

.u-modal-text {
    padding: 20px;
    line-height: 1.6;
}

.u-modal-text a {
    color: #002654;
    text-decoration: none;
    font-weight: bold;
}

.u-modal-text a:hover {
    color: #004AAD;
}

.evento-trigger {
    cursor: pointer;
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.evento-trigger:hover {
    transform: scale(1.02);
    animation: pulso 1.5s infinite;
}

@keyframes pulso {
    0% { opacity: 1; }
    50% { opacity: 0.8; }
    100% { opacity: 1; }
}

.u-section-titulo-eventos {
    padding: 0;
    margin-bottom: -20px;
}

.u-section-titulo-eventos .u-text-1 {
    font-size: 2rem;
    font-weight: 600;
    margin: 10px auto 0;
    text-align: center;
}

.u-section-titulo-eventos .u-text-2 {
    font-size: 1.1rem;
    margin: 0 auto 10px;
    text-align: center;
    color: #666666;
}

@media (max-width: 575px) {
    .u-section-titulo-eventos .u-text-1 {
        font-size: 1.5rem;
    }
    
    .u-section-titulo-eventos .u-text-2 {
        font-size: 1rem;
    }
}


/* Estilos para el Modal */
.u-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.8);
}

.u-modal-content {
    background-color: #fff;
    margin: 5% auto;
    padding: 20px;
    border-radius: 20px;
    width: 80%;
    max-width: 600px;
    position: relative;
}

.u-modal-close {
    color: #002654;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.u-modal-close:hover {
    color: #004AAD;
}

.u-modal-text {
    padding: 20px;
    line-height: 1.6;
}

.u-modal-text a {
    color: #002654;
    text-decoration: none;
    font-weight: bold;
}

.u-modal-text a:hover {
    color: #004AAD;
}

.evento-trigger {
    cursor: pointer;
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.evento-trigger:hover {
    transform: scale(1.02);
    animation: pulso 1.5s infinite;
}

@keyframes pulso {
    0% { opacity: 1; }
    50% { opacity: 0.8; }
    100% { opacity: 1; }
}

.u-section-titulo-eventos {
    padding: 0;
    margin-bottom: -20px;
}

.u-section-titulo-eventos .u-text-1 {
    font-size: 2rem;
    font-weight: 600;
    margin: 10px auto 0;
    text-align: center;
}

.u-section-titulo-eventos .u-text-2 {
    font-size: 1.1rem;
    margin: 0 auto 10px;
    text-align: center;
    color: #666666;
}

@media (max-width: 575px) {
    .u-section-titulo-eventos .u-text-1 {
        font-size: 1.5rem;
    }
    
    .u-section-titulo-eventos .u-text-2 {
        font-size: 1rem;
    }
}


/* Estilos para el Modal */
.u-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.8);
}

.u-modal-content {
    background-color: #fff;
    margin: 5% auto;
    padding: 20px;
    border-radius: 20px;
    width: 80%;
    max-width: 600px;
    position: relative;
}

.u-modal-close {
    color: #002654;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.u-modal-close:hover {
    color: #004AAD;
}

.u-modal-text {
    padding: 20px;
    line-height: 1.6;
}

.u-modal-text a {
    color: #002654;
    text-decoration: none;
    font-weight: bold;
}

.u-modal-text a:hover {
    color: #004AAD;
}

.evento-trigger {
    cursor: pointer;
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.evento-trigger:hover {
    transform: scale(1.02);
    animation: pulso 1.5s infinite;
}

@keyframes pulso {
    0% { opacity: 1; }
    50% { opacity: 0.8; }
    100% { opacity: 1; }
}

.u-section-titulo-eventos {
    padding: 0;
    margin-bottom: -20px;
}

.u-section-titulo-eventos .u-text-1 {
    font-size: 2rem;
    font-weight: 600;
    margin: 10px auto 0;
    text-align: center;
}

.u-section-titulo-eventos .u-text-2 {
    font-size: 1.1rem;
    margin: 0 auto 10px;
    text-align: center;
    color: #666666;
}

@media (max-width: 575px) {
    .u-section-titulo-eventos .u-text-1 {
        font-size: 1.5rem;
    }
    
    .u-section-titulo-eventos .u-text-2 {
        font-size: 1rem;
    }
}


/* Estilos para el Modal */
.u-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.8);
}

.u-modal-content {
    background-color: #fff;
    margin: 5% auto;
    padding: 20px;
    border-radius: 20px;
    width: 80%;
    max-width: 600px;
    position: relative;
}

.u-modal-close {
    color: #002654;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.u-modal-close:hover {
    color: #004AAD;
}

.u-modal-text {
    padding: 20px;
    line-height: 1.6;
}

.u-modal-text a {
    color: #002654;
    text-decoration: none;
    font-weight: bold;
}

.u-modal-text a:hover {
    color: #004AAD;
}

.evento-trigger {
    cursor: pointer;
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.evento-trigger:hover {
    transform: scale(1.02);
    animation: pulso 1.5s infinite;
}

@keyframes pulso {
    0% { opacity: 1; }
    50% { opacity: 0.8; }
    100% { opacity: 1; }
}

.u-section-titulo-eventos {
    padding: 0;
    margin-bottom: -20px;
}

.u-section-titulo-eventos .u-text-1 {
    font-size: 2rem;
    font-weight: 600;
    margin: 10px auto 0;
    text-align: center;
}

.u-section-titulo-eventos .u-text-2 {
    font-size: 1.1rem;
    margin: 0 auto 10px;
    text-align: center;
    color: #666666;
}

@media (max-width: 575px) {
    .u-section-titulo-eventos .u-text-1 {
        font-size: 1.5rem;
    }
    
    .u-section-titulo-eventos .u-text-2 {
        font-size: 1rem;
    }
}


/* Estilos para el Modal */
.u-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.8);
}

.u-modal-content {
    background-color: #fff;
    margin: 5% auto;
    padding: 20px;
    border-radius: 20px;
    width: 80%;
    max-width: 600px;
    position: relative;
}

.u-modal-close {
    color: #002654;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.u-modal-close:hover {
    color: #004AAD;
}

.u-modal-text {
    padding: 20px;
    line-height: 1.6;
}

.u-modal-text a {
    color: #002654;
    text-decoration: none;
    font-weight: bold;
}

.u-modal-text a:hover {
    color: #004AAD;
}

.evento-trigger {
    cursor: pointer;
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.evento-trigger:hover {
    transform: scale(1.02);
    animation: pulso 1.5s infinite;
}

@keyframes pulso {
    0% { opacity: 1; }
    50% { opacity: 0.8; }
    100% { opacity: 1; }
}

.u-section-titulo-eventos {
  padding: 10px 0;
}

.u-section-titulo-eventos .u-text-1 {
  font-size: 2rem;
  font-weight: 600;
  margin: 10px auto 5px;
  text-align: center;
}

.u-section-titulo-eventos .u-text-2 {
  font-size: 1.1rem;
  margin: 5px auto 10px;
  text-align: center;
  color: #666666;
}

/* ========================================
   ESTILOS MODERNOS PARA GRID DE NOTICIAS
   ======================================== */

.noticias-grid-section {
    padding: 40px 20px;
    background-color: #f8f9fa;
}

.noticias-grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Tarjeta moderna de noticia */
.noticia-card-modern {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.noticia-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* Contenedor de imagen */
.noticia-image-container {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    position: relative;
}

.noticia-image-container .u-image-1 {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.noticia-card-modern:hover .noticia-image-container .u-image-1 {
    transform: scale(1.05);
}

/* Contenido de la tarjeta */
.noticia-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    flex-grow: 1;
}

/* Título de la noticia */
.noticia-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #002654;
    margin: 0;
    line-height: 1.4;
    min-height: 60px;
}

/* Botón leer más */
.noticia-btn {
    background: linear-gradient(135deg, #002654 0%, #004AAD 100%);
    color: #ffffff;
    border: none;
    border-radius: 25px;
    padding: 12px 30px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    align-self: flex-start;
    box-shadow: 0 4px 15px rgba(0, 38, 84, 0.2);
}

.noticia-btn:hover {
    background: linear-gradient(135deg, #004AAD 0%, #0066FF 100%);
    box-shadow: 0 6px 20px rgba(0, 38, 84, 0.3);
    transform: translateY(-2px);
}

.noticia-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(0, 38, 84, 0.2);
}

/* Responsive design para grid de noticias */
@media (min-width: 1201px) {
    .noticias-grid-container {
        grid-template-columns: repeat(3, 1fr);
        gap: 35px;
    }
}

@media (max-width: 1200px) and (min-width: 769px) {
    .noticias-grid-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .noticias-grid-container {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 15px;
    }
    
    .noticias-grid-section {
        padding: 30px 15px;
    }
    
    .noticia-title {
        font-size: 1.1rem;
        min-height: auto;
    }
}

@media (max-width: 480px) {
    .noticia-card-modern {
        border-radius: 15px;
    }
    
    .noticia-content {
        padding: 20px;
    }
    
    .noticia-title {
        font-size: 1rem;
    }
    
    .noticia-btn {
        padding: 10px 25px;
        font-size: 0.9rem;
        width: 100%;
        text-align: center;
    }
}

/* Mejoras para los modales */
.u-modal-text h3 {
    color: #002654;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    border-bottom: 3px solid #004AAD;
    padding-bottom: 10px;
}

.u-modal-text p {
    margin-bottom: 15px;
    line-height: 1.8;
}