body, html{
    max-width: 100%;
  overflow-x: hidden;
}
.colorVerde{
   color: #2F696C;
}
.colorRojo{
    color: #DE6F74;
}
.colorAzul{
    color: #1F5790;
}
.contactoLabel {
    text-align: center;
    font-family: 'CarmenSans-Heavy';
    color: #E76877;
    font-size: 20px;
    line-height: 20px;
}
.contactoLabel span{
    text-align: center;
    font-family: 'CarmenSans-Heavy';
    color: #1F5790;
    font-size: 25px;
}
.modalbackgrounModal{

   background: #1F5790;
    background: -webkit-linear-gradient(90deg, rgba(31, 87, 144, 0.48) 0%, rgba(31, 87, 144, 0.4) 50%);
    background: -moz-linear-gradient(90deg, rgba(31, 87, 144, 0.48) 0%, rgba(31, 87, 144, 0.4) 50%);
    background: linear-gradient(90deg, rgba(31, 87, 144, 0.48) 0%, rgba(31, 87, 144, 0.4) 50%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#1F5790", endColorstr="#1F5790", GradientType=1);
}
.modalContenidoBackground{
    background: #ffffff;
    background-image: url("../../img/iclei/marca_hojas.png");
    background-size: cover;
    background-position: bottom;
    background-repeat: no-repeat;
}
.backgrounPrincipal{
    background-image: url("../../img/iclei/backgroundPrincipal.png");
    background-position: top center   ;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 100vh;
    margin-top: -10em !important;
    padding-top: 15em !important;
}

.tituloHead{
    font-family: 'CarmenSans-SemiBold';
    font-size: 32px;
    line-height: 35px;
    color: #1F5790;
    text-transform: uppercase;

}

.btnICLEIv1 {
  /* Layout y Alineación */
  display: inline-block;
  padding: 12px 28px;
  text-align: center;
  text-decoration: none;

  /* Tipografía */
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #ffffff;

  /* Fondo y Fondo Degradado */
  background: linear-gradient(135deg, #DD8B89 0%, #DE6F74 100%);
  border-radius: 50px; /* Bordes redondeados tipo píldora */
  border: none;

  /* Sombras y Profundidad */
  box-shadow: 0 4px 12px #0000004d;

  /* Transición Suave */
  transition: all 0.3s ease;
  cursor: pointer;
  width: 100%;
    border: 2px solid #DE6F74;
}

/* Efecto al pasar el cursor encima */
.btnICLEIv1:hover {
  color: #DE6F74;
  border: 2px solid #DE6F74;
  background: #FFF;
  box-shadow: 0 6px 18px #0000004d;
  transform: translateY(-2px); /* Eleva ligeramente el botón */
}

/* Efecto al hacer clic */
.btnICLEIv1:active {
  transform: translateY(1px); /* Efecto de hundimiento */
  box-shadow: 0 2px 6px #0000004d;
}

/* Accesibilidad al usar la tecla TAB */
.btnICLEIv1:focus {
  outline: none;
  box-shadow: 0 0 0 4px #0000004d;
}


.btnICLEIv2 {
  /* Layout y Alineación */
  display: inline-block;
  padding: 12px 28px;
  text-align: center;
  text-decoration: none;

  /* Tipografía */
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #ffffff;

  /* Fondo y Fondo Degradado */

    background: linear-gradient(135deg, #58807F 0%, #2F696C 100%);
  border-radius: 50px; /* Bordes redondeados tipo píldora */
  border: none;

  /* Sombras y Profundidad */
  box-shadow: 0 4px 12px #0000004d;

  /* Transición Suave */
  transition: all 0.3s ease;
  cursor: pointer;
  width: 100%;
  border: 2px solid #2F696C;
}

/* Efecto al pasar el cursor encima */
.btnICLEIv2:hover {
   color: #2F696C;
  border: 2px solid #2F696C;
  background: #FFF;
  box-shadow: 0 6px 18px #0000004d;
  transform: translateY(-2px); /* Eleva ligeramente el botón */

}

/* Efecto al hacer clic */
.btnICLEIv2:active {
  transform: translateY(1px); /* Efecto de hundimiento */
  box-shadow: 0 2px 6px #0000004d;
}

/* Accesibilidad al usar la tecla TAB */
.btnICLEIv2:focus {
  outline: none;
  box-shadow: 0 0 0 4px #0000004d;
}

.divitemComing {
  position: relative;
  background-color: #FFF;
  border-radius: 25px;
  box-shadow: 0 2px 6px #0000004d;
  overflow: hidden; /* Mantiene los bordes redondeados */
}

/* Capa independiente para la imagen */
.divitemComing::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;

  background-image: url("../../img/iclei/hojas.png");
  background-position: right;
  background-repeat: no-repeat;
  background-size: contain;

  opacity: 0.4; /* Ajusta qué tan transparente es la imagen */
  pointer-events: none;
}


.itemComing{
    background: rgba(255, 255, 255, 0);
    border-radius: 20px;

    min-height: 120px;

    display: flex;
    flex-direction: column;

    justify-content: center;
    align-items: center;
    transition: .3s ease;
}

.itemComing:hover{
    transform: translateY(-5px);
}


.tituloComing{
    font-family: 'CarmenSans-Regular';
    font-size: 55px;
    font-weight: bold;
    color: #58807F;

    margin: 0;
    padding: 0;

    line-height: 60px;
}

.numeroComing{
    font-family: 'CarmenSans-Heavy';
    font-size: 65px;
    font-weight: bold;
    color: #2F696C;

    margin: 0;
    padding: 0;

    line-height: 60px;
}

.textoComing{
    font-family: 'CarmenSans-SemiBold';
    font-size: 15px;
    color:#1F5790;

    margin:0;
    padding: 0;

    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
}

.form-control, .form-select {
  padding: 0.65rem 0.9rem !important;
  border-radius: 8px !important;
  border: 1px solid #ced4da !important;
  transition: all 0.2s ease-in-out!important;
}

.form-control:focus, .form-select:focus {
  border-color: #3A83C4 !important;
  box-shadow: 0 0 0 0.25rem rgba(58, 131, 196, 0.25) !important;
}

.form-check:hover {
  background-color: #f8f9fa !important;
}

.tituloSeccion{
    font-family: 'CarmenSans-Heavy';
    font-size: 35px;
    color: #1F5790;
    text-align: center;
    padding-bottom: 2vh;
}

@media screen and (max-width: 768px) {

    .backgrounPrincipal{
        background-position: left center   ;
        min-height: 85vh;
    }

    .tituloHead{
        font-size: 22px;
        line-height: 25px;

    }

    .numeroComing{
        font-size: 30px;
        line-height: 32px;
    }

    .textoComing{
         font-size: 10px;
         line-height: 15px;
    }

    .contactoLabel {
        text-align: center;
        font-family: 'CarmenSans-Heavy';
        color: #E76877;
        font-size: 18px;
        line-height: 18px;
    }
    .contactoLabel span{
        text-align: center;
        font-family: 'CarmenSans-Heavy';
        color: #1F5790;
        font-size: 20px;
    }



}

/*SEDES*/
.cardSede {
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cardSede:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

/* Contenedor e Imagen */
.cardSedeImgContainer {
    overflow: hidden;
    position: relative;
}

.cardSedeImg {
    height: 280px;
    object-fit: cover;
    width: 100%;
    transition: transform 0.3s ease;
}

.cardSede:hover .cardSedeImg {
    transform: scale(1.08); /* Zoom sutil a la imagen al hacer hover */
}

/* Capa de superposición (Overlay) */
.cardSedeOverlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(27, 90, 153, 0.5); /* Azul con transparencia */
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
}

.cardSede:hover .cardSedeOverlay {
    opacity: 1; /* Aparece al pasar el mouse */
}

/* Botón del mapa */
.btnMapa {
    font-size: 18px;
    color: #11283F;
    transform: translateY(10px);
    transition: transform 0.3s ease;
}

.cardSede:hover .btnMapa {
    transform: translateY(0); /* Desplazamiento suave hacia arriba */
}

/* Estilos existentes */
.fechasSede {
    background-color: #fdf8f5;
    color: #E76877;
    border: 1px solid #e2e8f0;
    font-size: 20px;
    display: inline-block;
}

.eventoSede {
    color: #1B5999;
    font-size: 17px;
}

.lugarSede {
    color: #11283F;
    font-size: 22px;
}

.direccionSede {
    font-size: 16px;
}

@media screen and (max-width: 768px) {
    .fechasSede {
        font-size: 15px;
    }

    .eventoSede {
        color: #1B5999;
        font-size: 13px;
    }

    .lugarSede {
        color: #11283F;
        font-size: 18px;
    }

    .direccionSede {
        font-size: 13px;
    }
    .btnMapa {
        font-size: 10px;
    }

}

/**/
.hotelDiv{
    background-image: url("../../img/iclei/marca_hojas.png");
  background-position:top;
  background-repeat: no-repeat;
  background-size: cover;
}
.cardHotel{

    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 15px;
}

.cardHotelHeader{
    background: linear-gradient(135deg, #1F5790 0%, #1F5790 100%);
}

.cardHotelHeader .bg-warning{
    background-color: #fff !important;
    border-color: #E76877 !important;
    color: #E76877 !important;
}

.cardHotelHeader .text-warning{
    color: #FFF !important;
}

.cardHotelContenido .btn-dark
{
    background-color: #E76877 !important;
    border-color: #E76877 !important;
}


.cardHotelContenido .btn-dark:hover
{
    background-color: #fff !important;
    color: #1F5790 !important;
    border-color: #1F5790 !important;
}


