* {
  margin: 0;
  box-sizing: border-box;
}

body {
  font-family: sans-serif;
  padding: 90px 20px 0;
}

.titulo p {
  font-family: 'Cormorant Garamond', serif;
font-family: 'Dancing Script', cursive;
  font-size: 30px;
  margin-top: 15px;
  color: blue;

}

.header {
  background-color: #AAC9FF;
  height: 80px;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
}

.nav {
  display: flex;
  justify-content: space-between;

  max-width: 992px;
  margin: 0 auto;
}

.nav-link {
  color: white;
  text-decoration: none;
}

.social_inst img {
  width: 3%;
  margin-top: -5%;
  /* height: 90%; */
  /* margin-top: -50px;
  margin-right: 10px; */

}

.logo_nav-link {


  margin-top: 85%;
}

.logo_nav-link img {

  width: 5%;

}

.nav-menu {
  display: flex;
  margin-right: 40px;
  list-style: none;
}

.nav-menu-item {
  font-size: 18px;
  margin: 0 10px;
  line-height: 80px;
  text-transform: uppercase;
  width: max-content;
}

.nav-menu-item img {
  width: 25%;
  margin-top: 2%;
}

.nav-menu-link {
  padding: 8px 12px;
  border-radius: 3px;
}

.nav-menu-link:hover,
.nav-menu-link_active {
  background-color: lightgray;
  transition: 0.5s;
}

/* TOGGLE */
.nav-toggle {
  color: white;
  background: none;
  border: none;
  font-size: 30px;
  padding: 0 20px;
  line-height: 60px;
  cursor: pointer;

  display: none;
}

.foto {
  width: 70%;
  margin-left: 15%;
  margin-top: 5%;
}

/* MOBILE */
@media (max-width: 768px) {
  body {
    padding-top: 70px;
  }

  .titulo p {
    font-family: 'Cormorant Garamond', serif;
  font-family: 'Dancing Script', cursive;
    font-size: 25px;
    margin-top: 15px;
    color: blue;

  }

  .header {
    height: 60px;
  }

  .logo_nav-link {


    margin-top: 90%;
    margin-left: -10px;
  }

  .nav-menu-logo img {

    width: 1%;

  }

  .nav-menu {
    flex-direction: column;
    align-items: center;
    margin: 0;
    background-color: rgba(70, 114, 150, 0.85);
    position: fixed;
    top: 60px;
    width: 100%;
    padding: 20px 0;

    height: calc(100% - 60px);
    overflow-y: auto;

    left: 100%;
    transition: left 0.3s;
  }

  .nav-menu-item {
    line-height: 70px;
  }

  .nav-menu-item img {
    width: 50%;
    margin-top: 6%;
    margin-left: 25%;
  }

  .nav-menu-link:hover,
  .nav-menu-link_active {
    background: none;
    color: lightgray;
  }

  .nav-toggle {
    display: block;
  }

  .nav-menu_visible {
    left: 0;
  }

  .nav-toggle:focus:not(:focus-visible) {
    outline: none;
  }

  .social_inst img {
    width: 15%;
    margin-top: 5%;

    margin-right: 10px;

  }

  .foto {
    width: 90%;
    margin-top: 3%;
    margin-left: 5%;
  }

}
