@import url("general.css");
/* Banner */
.programa-banner {
  background-image: url(../img/programas/banner-programas.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom;
  width: 100%;
  height: 800px;
}

.programa-banner h1 {
  color: var(--color-blanco);
  padding-top: 250px;
}

.programa-banner p {
  color: var(--color-blanco);
}

/* Informacion */
.info {
  height: 300px;
  margin-bottom: 150px;
  position: relative;
}

.info h1 {
  margin-top: 0px;
}

.info p {
  margin-top: 50px;
  margin-left: 50px;
}

.info .lineainutil {
  position: absolute;
  right: 0;
  top: 0;
  width: 12px;
  height: 300px;
  background-color: var(--color-naranja);
}

.chile {
  position: absolute;
  bottom: -500px;
  left: -30px;
}

.lechuga {
  position: absolute;
  right: -70px;
  top: -310px;
  width: 550px;
}

.info .lista {
  margin-top: 50px;
  margin-left: 50px;
  list-style-type: none;
  padding: 0;
  font-family: "Poppins-Regular";
  font-size: 18px;
  color: var(--color-negro);
}

.info .lista li::before {
  content: "— ";
  color: #303030;
  font-size: 10px;
}

.info .lista-container {
  display: flex;
  justify-content: space-between;
}

.info .lista-container ul {
  width: 45%;
}

/* Medium devices (tablets, less than 992px) */
@media (max-width: 991.98px) {
  .lechuga {
    width: 350px;
  }
  .lineainutil{
    display: none;
  }
  .chile {
    position: absolute;
    bottom: -300px;
    left: -30px;
  }
}

@media (max-width: 767.98px) {
  .chile {
    display: none;
  }
  .lechuga {
    right: 0px;
  }
}

/* Redes */
.redes {
  text-align: center;
  height: 400px;
}

.redes .iconos {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 75px;
  cursor: pointer;
}

.redes .icono {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background-color: var(--color-naranja);
  border-radius: 90%;
  transition: 1s;
}

.redes .icono:hover {
  background-color: var(--color-verde);
}

.redes .icono svg {
  fill: #fff;
  width: 20px;
  height: 20px;
}


/* Medium devices (tablets, less than 992px) */
@media (max-width: 991.98px) {
  .redes {
    text-align: center;
    height: 340px;
  }
}
