* {
  margin: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, Helvetica, sans-serif; 
}

.header {
  
 background-color: #3aaccf;
height: 80px;
 position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 30;
}
.titulo{
  margin-top: 40px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1em;
}
.nav {
  display: flex;
  justify-content: space-between;  
  max-width: 992px;
  margin: 0 auto;
}

.nav-link {
  color: rgb(248, 248, 248);
  text-decoration: none;
  font-size: 1em; 
  font-family: Arial, Helvetica, sans-serif; 
}

/*.logo {
  font-size: 20px;
  font-weight: bold;
  padding: 0 40px;
  line-height: 100px;
}*/


.nav-menu {
  display: flex;
 
  margin-right: 40px;
  list-style: none;
}

.nav-menu-item {
  font-size: 18px;
  margin: 0px 10px;
  line-height: 100px;
 /* text-transform: uppercase;*/
  width: max-content;
  
}

.nav-menu-link {
  padding: 37px 35px; 
  border-radius: 3px;
  clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
  
}

.nav-menu-link:hover,
.nav-menu-link_active {
  background-color: #000000;
  transition: 0.5s;
  height: 80px;
}

/* TOGGLE */
.nav-toggle {
  color: white;
  background: none;
  border: none;
  font-size: 30px;
  padding: 0px 20px;
  margin-top: -20px;
  line-height: 60px;
  cursor: pointer;

  display: none;
}

/* responsive */
@media (max-width: 768px) {
  body {
    padding-top: 70px;
  }

  .header {
    height: 60px;
  }

  .logo {
    font-size: 25px;
    padding: 0 20px;
    line-height: 60px;
    margin-top: -35px;
  }

  .nav-menu {
    flex-direction: column;
    align-items: center;
    margin: 0;
    background-color: #2c2c2c;
    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-link:hover,
  .nav-menu-link_active {
    background: none;
    color: #83c5f7;
  }

  .nav-toggle {
    display: block;
  }

  .nav-menu_visible {
    left: 0;
  }

  .nav-toggle:focus:not(:focus-visible) {
    outline: none;
  }

  .camino{
   font-size: 20px;
  }
}
