.img_general img {
    width: 100%;
    object-fit: cover;
    cursor: pointer;
    transition: transform 0.1s, border-radius 0.1s;
    border-radius: 3px; /* Hace que las esquinas sean ligeramente redondeadas */

  }
  
  .img_general img:hover {
    transform: scale(1.02); 
    opacity: 0.9;
}

.list a {
    text-decoration: none; /* Evita que se subraye el texto */
    color: rgba(2, 164, 192, 0.8); /* Mantiene el color original del texto */
    font-weight: bold;
}


.list a:hover {
  text-decoration: none; /* Evita que se subraye el texto */
  color: rgba(192, 141, 2, 0.8); /* Mantiene el color original del texto */
  font-weight: bold;
}


.gallery_item a {
  text-decoration: none; /* Evita que se subraye el texto */
  font-weight: bold;
  color: rgba(2, 164, 192, 0.8);
}

.gallery_item a:hover {
  text-decoration: none; /* Evita que se subraye el texto */
  color: rgba(192, 141, 2, 0.8); /* Mantiene el color original del texto */
  font-weight: bold;
}
  
.img_caption{
    margin-top: 5px;
}

.gallery_container{
  width: 80%;
  max-width: 1100px;
  margin: 40px auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 50px;
  grid-auto-rows: 20%;
  margin-bottom: 20%;
}


.gallery_container img{
  height: 100%;
}

.gallery_item{
  width: auto;
  height: 200%;
  padding-bottom: 180px;
}



.seccion1{
  margin-bottom: -48%;
}


---svg-----

.card {
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 16px;
  max-width: 300px;
  text-align: center;
}

.card-image {
  border-radius: 50%;
  width: 100px;
  height: 100px;
}

.card-text {
  margin-top: 16px;
}

