#container_proyectos {
  flex-direction: column;
}

:root {
  --altoFila: 300px;
  --altoModal: 100%;
  --altomenu: 300px;
}
#cajaFiltros {
  max-width: 100vw;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  background-color: var(--main-color-01);
  padding: 25px;
}
.botonFiltro {
  color: var(--main-typo-color-02);
  text-transform: uppercase;
  font-size: 12px;
  display: flex;
  /* width: 20vw; */
  min-width: 120px;
  justify-content: center;
  background-color: var(--main-color-01);
  cursor: pointer;
  font-weight: bold;
  padding: 15px;
}
.botonFiltro:hover {
  background-color: var(--main-color-02);
}
#container {
  display: flex;
  /* flex-direction: column; */
  align-items: center;
  /* flex-wrap: wrap; */
  background-color: rgb(255, 255, 255);
  margin: 20px;
}
.proyecto {
  position: relative;
  width: 100%;
  height: var(--altoFila);
  background-color: rgb(0, 0, 0);
  display: flex;
  justify-content: center;
  align-items: stretch;
  opacity: 1;
  transition: 0.4s;
}
.proyecto:hover {
  box-shadow: 2px 2px 6px rgb(66, 66, 66);
  transform: scale(0.9);
}
.esconder {
  display: none;
}
.imagen {
  width: 100%;
}
.thumbnail {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.proyectoExtentidoContainer {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0px;
  width: 100%;
  display: flex;
  align-content: center;
  justify-content: center;
}
.proyectoExtendido {
  width: 100%;
  height: 100%;
  position: absolute;
  background-color: rgba(0, 0, 0, 0.6);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  font-size: 22px;
}
.proyectoExtendido > * {
  padding: 5px;
  text-align: center;
}

.proyectoExtendido:hover {
  opacity: 1;
}
.proyectoExtendidoContainer:hover {
  display: none;
  background-color: rgb(0, 0, 0);
}
#lista_proyectos {
  margin: 15px;
  display: grid;
  grid-gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}
.h1 {
  font-size: 20px;
  font-weight: bold;
}
.h2 {
  font-size: 15px;
}
.h3 {
  font-size: 13px;
  padding: 15px;
  /* margin: -10px; */
  /* background-color: red; */
}
#separador {
  display: none;
}
#tareas {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

#superficies {
  display: flex;
  flex-direction: column;
  align-items: center;
  /* background-color: red; */
}

.ocultar {
  display: none;
}

@media only screen and (max-width: 900px) {
  .proyecto {
    flex-direction: column;
    width: 100%;
    height: auto;
  }
  .imagen {
    width: 100%;
    object-fit: none;
    object-position: center;
  }
  .proyectoExtendido {
    width: 100%;
    font-size: 12px;
  }
  #lista_proyectos {
    margin: 15px;
    display: grid;
    grid-gap: 1rem;
    grid-template-columns: repeat(auto-fit, minmax(80vw, 1fr));
  }
  #cajaFiltros {
    justify-content: space-evenly;
  }
  .botonFiltro {
    min-width: unset;
    width: 100%;
  }
}
