:root {
    --color-1--: #39B7CD;
    --color-2--: #34A6BA;
    --color-3--: #3284B1;
    --color-4--: #2F62A8;
    --color-5--: #033346;
    --color-6--: #3CBF7C;
    --color-7--: #3EC62B;
    --color-8--: #7ED957;
    --color-9--: #60D050;

}




* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Montserrat", sans-serif;
    list-style: none;
}

body{
    height: 100vh;

}

.sombra {
    box-shadow: 0 0 20px -3px rgba(0, 0, 0, 0.5);
}




.contMunicipio {
    width: 100%;
    height: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-bottom: 50px;

    .municipio {
        width: 150px;
        height: 200px;
        border-radius: 10px;
        overflow: hidden;

        .contImagen {
            width: 100%;
            height: 60%;

            .img {
                width: 100%;
                height: 100%;
                object-fit: cover;
            }
        }

        .cont_texto {
            font-family: "Archivo Black", sans-serif;

            width: 100%;
            height: 40%;
            background-color: white;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 20px;
            color: rgb(83, 83, 83);
            font-weight: bold;
            text-align: center;
        }

    }
}

a {
    text-decoration: none;
}

.TituloMunicipio {
    width: 100%;
    height: 60px;
    padding: 1rem;
    margin-bottom: 1rem;
    display: flex;
    text-align: center;
    align-items: center;
    text-decoration: none;
    color: black;
}

.texto {
    font-size: 30px;
    text-decoration: none;
}





.icono_m {
    display: none !important;
}

.menuLateral {
    display: none !important;
}

.iconos {
    display: none !important;
}

.card {
    width: 400px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    background-color: #F7F7F7;
}


.card-header img {
    width: 100%;
    height: auto;
}

.card-body {
    padding: 15px;
    color: black;
    font-family: Arial, sans-serif;
}

h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

p {
    font-size: 14px;
    color: #f8f9fa;
}


.card {
    width: 400px;
    height: 461px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
   
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Suaviza la transición */
  }
  
  .card:hover {
    transform: translateY(-10px); /* Eleva la tarjeta ligeramente */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); /* Aumenta la sombra para mayor profundidad */
  }
  


.card-header img {
    width: 100%;
    height: 310px;
    background-size: cover;
}

h5{
    color: gray;
    font-family: cursive;
    margin-bottom: 10px;
}



.card-body {
    padding: 15px;
    color: black;
    font-family: Arial, sans-serif;
    z-index: 3;
}

h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

p {
    font-size: 14px;
    color: black;
}


@media (orientation=portrait) {
    .card{
        width:339px;
        height: 471px;
    }
    .contMunicipio {
        
        gap: 67px !important;
    }

    .card-body {
      
        height: 100%;
    }
}
