/* file: /cellca/css/componentes/tarjeta-educellca.css */
.contenedor-educellca {
  display: flex;
  width: 100%;
  justify-content: center;
  background-color: var(--background-gris);
  
}
.tarjeta-educellca {
  display: flex;
  flex-direction: row-reverse;
  max-width: 1440px;
  align-items: center;
  justify-content: space-between;
  border-radius: 8px;
  padding: 50px 150px;
  margin-bottom: 20px;
}

.tarjeta-educellca__imagen {
  display: flex;
  justify-content: center;
  align-items: center;
}

.tarjeta-educellca__imagen img {
  width: 560px;
  height: 493px;
  border-radius: 8px;
}

.tarjeta-educellca__contenido {
  flex: 2;
  padding-right: 20px;
}

.tarjeta-educellca__titulo {
  font-size: 28px;
  margin-bottom: 30px;
  color: var(--azul);
  font-weight: bold;
}

.tarjeta-educellca__descripcion {
  margin-bottom: 30px;
  color: var(--negro);
  font-size: 17px;
  font-style: normal;
  font-weight: 700;
  line-height: 27px;
}

.tarjeta-educellca__lista {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.tarjeta-educellca__lista li {
  margin-bottom: 10px;
  color: var(--negro);
  display: flex;
  align-items: center;
  font-size: 17px;
  font-style: normal;
  font-weight: 400;
  line-height: 39px;
}

.tarjeta-educellca__lista li:before {
  content: "✔";
  color: #1d1d1f;
  margin-right: 10px;
}

.tarjeta-educellca__boton {
  display: inline-block;
  padding: 5px 50px;
  gap: 10px;
  background: var(--fondo-botones);
  color: #fff;
  text-decoration: none;
  border-radius: 10px;
}


@media only screen and (max-width: 768px) {
  .contenedor-educellca {
    padding: 0 20px;
    border-radius: 20px;
  }
  .tarjeta-educellca {
      flex-direction: column;
      padding: 20px 10px;
  }

  .tarjeta-educellca__imagen img {
      width: 100%;
      height: auto;
  }

  .tarjeta-educellca__contenido {
      padding-right: 0;
      padding-top: 20px;
  }

  .tarjeta-educellca__titulo {
      font-size: 20px;
      text-align: center;
  }

  .tarjeta-educellca__descripcion {
      font-size: 16px;
      text-align: center;
  }

  .tarjeta-educellca__lista {
      padding: 0;
      list-style: none;
      margin: 0;
      text-align: left;
  }

  .tarjeta-educellca__lista li {
      font-size: 16px;
  }

  .tarjeta-educellca__boton {
      display: block;
      margin: 20px auto 0;
      text-align: center;
  }
}

@media only screen and (max-width: 1220px) {
  .tarjeta-educellca {
    padding: 20px 10px;
    flex-direction: column;
    gap: 20px;
  }
}