/* font-family: 'Noto Sans Display', sans-serif;
font-family: 'Staatliches', cursive; */

@charset "utf-8";
* {
  margin: 0;
}
a {
  text-decoration: none;
  color: black;
  font-family: "Staatliches", cursive;
}
img {
  max-width: 100%;
  height: auto;
  border-radius: 0.5em;
}

.menu-btn .btn-linea {
  width: 25px;
  height: 3px;
  margin: 4px 0 4px 0;
  background: rgb(25, 94, 60);
  transition: all 0.3s ease-out;
  /* position: relative; */
}

body {
  background-color: rgb(150, 204, 181);
  color: rgb(25, 94, 60);
  font-family: "Noto Sans Display", sans-serif;
  font-size: 0.9em;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Staatliches", "Impact", "Arial Narrow Bold", sans-serif;
  margin-bottom: 0.5em;
}

.cabecera {
  padding: 1rem;
}
header .cabecera {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
header .cabecera ul li {
  list-style: none;
}
.cabecera img {
  width: 8rem;
}

header nav ul {
  display: none;
}
/* -------- MAIN -------- */
main {
  margin: 1em;
}
/* -------- section bienvenida -------- */
#bienvenida {
  display: flex;
  flex-direction: column;
  align-items: center;
}
#bienvenida img {
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.2), 0 5px 5px rgba(0, 0, 0, 0.2) inset;
}

article {
  margin: 2em 0 2em 0;
}
section {
  margin: 2em 0 2em 0;
}

section p {
  text-indent: 0.8em;
}
section h1 {
  font-size: 3em;
  margin: 0;
}
.botones {
  align-self: flex-end;
  display: flex;
  justify-content: flex-end;
  padding: 1em;
}

.botones a {
  background-color: rgb(25, 94, 60);
  margin-left: 1em;
  color: white;
  padding: 0.3em;
}

/* -------- section portfolio -------- */
/* #portfolio article {
  text-align: center;
  width: auto;
  height: auto;
} */
#imgsPortfolio article img {
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.2), 0 5px 5px rgba(0, 0, 0, 0.2) inset;
  border-radius: 0.5em;
}

#portfolio #imgsPortfolio {
  display: flex;
  flex-direction: column;
  align-items: center;
}
#portfolio figcaption {
  font-size: 0.9em;
  text-align: center;
}

#portfolio h2 {
  align-self: flex-start;
}
#portfolio .botones {
  align-self: flex-end;
}

/* -------- section masInformacion -------- */

#masInformacion a {
  font-variant: unset;
  font-family: "Noto Sans Display", sans-serif;
  font-weight: bolder;
  text-decoration: underline;
  color: rgb(25, 94, 60);
}

/* -------- Propuesta individual -------- */
#propuestaIndividual div {
  text-align: center;
  margin-top: 1em;
}
#propuestaIndividual img {
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.2), 0 5px 5px rgba(0, 0, 0, 0.2) inset;
  width: 70%;
  margin-top: 2em;
}

/* -------- FOOTER -------- */
footer {
  background-color: rgb(25, 94, 60);
  padding: 2rem 1rem 0rem 1rem;
  color: white;
  padding: 1em;
}
footer article {
  font-size: 0.9em;
  margin: 1em;
}
footer #pieDePagina {
  display: flex;
  flex-direction: column;
}
footer .middle img {
  width: 2.5em;
  margin-right: 2em;
}

footer .right img {
  width: 10em;
}

footer #pieDePagina .right {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
}
footer .derechosReservados {
  margin: 1em;
  text-align: center;
}

/* ---------RESPONSIVE 800PX---------- */
@media (min-width: 800px) {
  .cabecera {
    padding: 0;
  }
  header {
    margin: 0 7em 0 7em;
  }
  header nav .menu-btn {
    display: none;
  }
  main {
    margin: 0 7em 0 7em;
  }

  header nav ul {
    display: flex;
    font-size: 2em;
    color: rgb(25, 94, 60);
  }
  header nav li a:hover {
    color: rgb(233, 148, 21);
  }

  header nav li a {
    margin-left: 1em;
    color: rgb(25, 94, 60);
  }

  #bienvenida {
    display: unset;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: flex-start;
  }
  #bienvenida article {
    align-self: center;
    margin: 0;
  }
  #bienvenida img {
    max-width: 100%;
    margin-right: 1em;
  }

  #bienvenida .botones {
    align-self: flex-end;
    flex-basis: 100%;
  }
  .integrantes {
    display: flex;
    flex-direction: row;
    justify-content: center;
  }
  #portfolio #imgsPortfolio {
    display: unset;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-evenly;
  }
  #imgsPortfolio article img {
    border-radius: 0.5em;
    max-width: 90%;
  }
  #portfolio article {
    text-align: center;
  }
  /* -------- Propuesta individual -------- */

  #propuestaIndividual #mobile {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-items: center;
  }

  #propuestaIndividual #mobile img {
    flex-basis: 40%;
    width: 30%;
  }
  #propuestaIndividual #escritorio {
    display: flex;
    flex-direction: column;

    justify-content: space-evenly;
    align-items: center;
  }
  #propuestaIndividual #escritorio img {
    flex-basis: 45%;
    width: 100%;
  }
}

/* ---------RESPONSIVE 1000PX---------- */
@media (min-width: 1000px) {
  main {
    margin: 0 7em 0 7em;
  }

  /* ------ PIE DE PAGINA ------- */
  footer {
    width: unset;
  }

  footer #pieDePagina {
    width: 100%;
    display: unset;
    display: flex;
    flex-direction: row;

    align-items: flex-start;
  }
  footer #pieDePagina article {
    flex-basis: 33%;
  }

  footer #pieDePagina .right {
    align-self: unset;
    display: flex;
    flex-direction: column;
    justify-content: space-between;

    align-items: flex-end;
    height: 10em;
  }
}
