.cuestionario {
  margin-top: 100px;
  margin-bottom: 100px;
}

.contenedor {
  width: 90%;
  max-width: 1000px;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  background-color: #63d0c8;
}

.tabla {
  width: 25%;
  height: 450px;
  margin: auto;
  border: 1px solid #ffffff;
  border-radius: 4px;
  box-shadow: 0px 0px 4px 0px #162e44;
  padding: 5px;
  text-align: center;
  flex-grow: 1;
  color: #000;
  background-image: linear-gradient(0deg, #162E44 7%, #162E44 51%, #ffffff 100%);
}

.tabla h2 {
  margin-top: 10px;
  font-size: 25px;
  margin-bottom: 20px;
  font-weight: bold;
}

.tabla img {
  width: 220px;
  height: 180px;
  margin-bottom: 10px;
  border-radius: 5px;
}

.tabla p {
  display: block;
  margin-bottom: 20px;
  color: #ffffff;
}

.boton {
  display: inline-block;
  width: 150px;
  padding: 12px;
  background: #ffffff;
  text-decoration: none;
  color: #162e44;
  border-radius: 50px;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  margin: auto;
  box-shadow: 0px 0px 4px 2px #162e44;
}

.tabla:hover {
  color: #000;
  background-color: #63d0c8;
  background-image: linear-gradient(0deg, #162E44 37%, #ccdcdc 100%);
  transition: 0.5s all;
  transform: scaleX(1.4) scaleY(1.2);
  cursor: pointer;
}


#gas {
  margin-top: 30px;
  margin-bottom: 30px;
}

@media screen and (max-width: 1000px) {
  .tabla {
    width: 45%;
    max-width: none;
  }
  .tabla:hover {
    color: #000;
    background-color: #63d0c8;
    background-image: linear-gradient(0deg, #162E44 37%, #ccdcdc 100%);
    transition: 0.5s all;
    transform: scaleX(1.1) scaleY(1.2);
    cursor: pointer;
  }
}

@media screen and (max-width: 700px) {
  .tabla {
    width: 45%;
  }
  .tabla > h2 {
    margin-top: 5px;
  }
}

@media screen and (max-width: 550px) {
  .tabla {
    width: 85%;
    padding: 20px;
  }
  .tabla:hover {
    color: #000;
    background-color: #63d0c8;
    background-image: linear-gradient(0deg, #162E44 37%, #ccdcdc 100%);
    transition: 0.5s all;
    transform: scaleX(1.1) scaleY(1.1);
    cursor: pointer;
  }
}