body {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}

.bebas-neue-font {
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.inter-font {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  line-height: 1.2;
  letter-spacing: 0px;
}

/* ESTILOS DEL HEADER */

.header {
  background-color: white;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  padding: 15px 0;
  position: relative;
  height: 110px;

  .menu-container {
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;

    #logo {
      width: 80px;
    }

    #check {
      display: none;
    }

    .nav-container {
      display: block;
      transition: .3s ease;
      z-index: 999;

      .nav-list {
        list-style: none;
        display: flex;
        gap: 20px;
        margin-bottom: 0;
        padding-left: 0;
      }
    }

    .container-icons {
      display: flex;
      align-items: center;

      .icons {
        display: none;
        font-size: 38px;
        margin-left: 15px;
      
        #close-icon {
          display: none;
        }
      }
    }
  }
}

.btn-rounded, .btn-rounded-secondary {
  border: 2px solid #000;
  padding: 8px 18px;
  border-radius: 20px;
  text-decoration: none;
  color: #000;
  font-size: 14px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.btn-rounded:hover {
  background-color: #000 !important;
  color: #fff;
}

#check:checked ~ .container-icons .icons #menu-icon {
  display: none;
}

#check:checked ~ .container-icons .icons #close-icon {
  display: block;
}

#check:checked + .nav-container {
  height: 100vh;
  background: #ccc;
}

.nav-container .nav-list a {
  text-decoration: none;
  color: #000;
  font-size: 14px;
  font-weight: 600;
  font-size: clamp(14px, 1.1vw + 0.185rem, 16px);
  transition: color 0.2s ease;
}

.nav-container .nav-list a:hover {
  color: #d40000;
}

@media (max-width: 935px) {
  .header .menu-container {
    .nav-container {
      margin-right: 15px;
    }

    .container-icons {
      display: none;
    }
  }
}

@media (max-width: 779px) {
 .header .menu-container {
    .nav-container {
      position: absolute;
      top: 100%;
      left: 0;
      width: 100%;
      height: 0;
      overflow: hidden;

      .nav-list {
        gap: 0;
        flex-direction: column;
        align-items: center;

        li {
          padding: 23px 0;
          border-bottom: solid #eeeeee 1px;
          width: 85%;
          text-align: center;
        }
      }
    }

    .container-icons {
      display: flex;

      .icons {
        display: block;
        cursor: pointer;
      }
    }
  }
}