html,
body {
    height: 100%;
    margin: 0;
    padding: 0;
}
/*IDIOMA SELECT*/
/* Estilo para el elemento select */

/* Estilo para las opciones del select */
/* Ajusta el estilo de la imagen en la opci«Ńn */
.select2-container--default
  .select2-selection--single
  .select2-selection__rendered {
    background-size: 15px;
    background-repeat: no-repeat;
    max-width: 100%;
    width: fit-content;
}

/* Ajusta el tama«Šo de la imagen en las opciones individuales */
.select2-results__option img {
  width: 20px !important; /* Ajusta el tama«Šo espec«æfico de la imagen */
}
/* Estilo para las opciones del men«ā desplegable */
.img-flag {
  width: 20px; /* Ajusta el tama«Šo de las banderas seg«ān sea necesario */
  margin-right: 5px; /* Espacio entre la bandera y el texto */
}
#languageSelector {
  width: 157px; /* Ajusta el ancho seg«ān sea necesario */
}
#languageSelector option {
  padding-left: 10px; /* Ajusta el espacio entre la imagen y el texto seg«ān sea necesario */
}
#languageSelector option[data-translation-key="Spanish"]::before {
  content: url("../../imagenes/BanderaMexico.png");
  margin-right: 10px; /* Espacio entre la imagen y el texto */
}

#languageSelector option[data-translation-key="English"]::before {
  content: url("../../imagenes/banderaEU.jpg");
  margin-right: 10px; /* Espacio entre la imagen y el texto */
  width: 50px;
}

#languageSelector option[data-translation-key="Portuguese"]::before {
  content: url("../../imagenes/banderaBrazil.png");
  margin-right: 10px; /* Espacio entre la imagen y el texto */
}
/*-------------------------------------------------------*/
.container {
    max-width: 80%;
    /* Ajustado para abarcar el 80% de la pantalla */
    margin: 0 auto;
    padding: 10px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

#contenedor_banner {
    margin-top: 100px;
    padding: 0px 50px;
    background-image: url("./FondoObrasPublicas.png");
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
    z-index: 1;
}

#contenedor_banner::before {
    content: "";
    background: rgba(0, 0, 0, 0.62);
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
}

.contenedor_logo_titulo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    color: white;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 90%;
}

.contenedor_logo_titulo img {
    max-width: 200px;
    height: auto;
    display: block;
}

.contenedor_logo_titulo h2 {
    text-shadow: 2px 2px 2px #818181dc;
    text-align: center;
    color: #fcff58;
    font-family: "Helvetica", Sans-serif;
    font-size: 45px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-top: 1px;
}

.contenedor_logo_titulo p {
    font-size: 25px;
    font-weight: 400;
    text-align: justify;
    width: 90%;
    line-height: 1.5;
    margin-top: 1px;
}

.contenedor_logo_titulo h3 {
    text-align: center;
}

.contenedor_logo_titulo h3 span {
    font-size: 25px;
    font-weight: 400;
    text-align: center;
    width: 90%;
    line-height: 1.5;
    text-transform: uppercase;
}

body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #f0f0f0;
}

/* Estilo adicional para la lista de aĆ±os */
.container h1 {
    font-size: 28px;
    text-align: center;
    margin-bottom: 20px;
    color: black;
}

.container ul {
    list-style-type: none;
    padding: 0;
}

.container ul li {
    margin-bottom: 10px;
    padding: 15px;
    text-align: center; /* Centra el texto horizontalmente */
    display: flex; /* Utiliza flexbox para el centrado */
    justify-content: center; /* Centra horizontalmente */
    align-items: center; /* Centra verticalmente */
}

.container ul li h3 {
    font-size: 18px;
    margin: 0;
    color: #73122d;
}

.container ul li h3:hover {
    color: #cba234;
    cursor: pointer;
}

