.grid_servicios {
  display: grid;
  grid-template-columns: 45% 45%;
  justify-content: space-around;
  margin-bottom: 10vh;
  margin-top: 18vh !important;

}

/* Solo aplicar flex-direction: row cuando dentro de grid_servicios */
/* Esto evita conflictos con style_servicios que usa flex-direction: column */
.grid_servicios .acc {
  background-color: white;
  height: 20vh;
  width: 100%;
  display: flex;
  flex-direction: row;
  margin: 0;
  margin-top: 7vh;
  border-radius: 2px;
}

.Tit {
  grid-template-columns: 90%;
}

/* WARN cards - altura automática para ajustarse al contenido */
.grid_servicios .acc.tit {
  height: auto;
  min-height: 40vh;
  overflow: visible;
  padding: 2vh;
}


.grid_servicios .acc img {
  width: 40%;
  height: 100%;
  object-fit: cover;
  padding: 0;
  margin-bottom: 0;
  margin: auto;
}


.cuadricula_texto {
  text-align: left;
  width: 60%;
  padding: 0;
  color: black;
  margin: auto;
  line-height: 3vh;
  font-size: 0.9em;
  margin-left: 1vw;
}

.tit .cuadricula_texto {
  width: 30%;
  font-size: 0.9em;
}




@media screen and (max-width: 1000px) {
  /*min-width */

  .grid_servicios {
    padding-top: 2vh;
    grid-template-columns: 90%;
    margin-top: 10vh;
  }


  .cuadricula_texto {
    font-size: 1em;
    margin-left: 2vh;
  }

  .tit {
    height: auto;
    font-size: 0.8em;
  }

  .acc {
    height: auto;
  }

  .acc .cuadricula_texto {

    line-height: 4vh;
  }

}

@media screen and (max-width: 600px) {
  /*min-width*/

  .grid_servicios {
    margin-top: 8vh;
  }

  .cuadricula_texto {
    font-size: 0.8em;
  }

  .grid_servicios {
    grid-template-columns: 90%;
  }

  .acc {
    height: auto;
  }

  .tit {
    display: flex;
    flex-direction: column;
  }

  .tit img {
    width: 100%;
  }

  .tit .cuadricula_texto {
    width: 90%;
    line-height: 4vh;
    padding: 1vh 0;
  }

  h1 {
    font-size: 1em;
  }

  h2 {
    font-size: 1em;
  }

}


@media screen and (max-width: 350px) {

  /*min-width*/
  .cuadricula_texto {
    font-size: 0.7em;
    padding: 1vh 1vw;
  }


  .acc img {
    width: 30%;
  }

  .tit {
    display: flex;
    flex-direction: column;
  }

  .tit img {
    width: 100%;
  }

  .tit .cuadricula_texto {
    width: 90%;

    padding: 1vh 0;
  }

}