@font-face {
  font-family: 'Acumin';
  src: url('../font/Acumin VF Default.ttf');
  font-weight: 350;
  font-style: normal;
}

:root {
  --color-bg: #ffffff;
  --color-text: #444444;
  --color-text-strong: #111111;
  --color-menu: #777777;
  --color-accent: #97ab63;
  --header-height-desktop: 180px;
  --header-height-tablet: 150px;
  --header-height-mobile: 185px;
  --page-x-desktop: 120px;
  --page-x-tablet: 55px;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
}

body {
  margin: 0;
  padding-top: var(--header-height-desktop);
  font-family: 'Acumin', sans-serif;
  font-weight: 350;
  background: var(--color-bg);
  color: var(--color-text);
  overflow-x: hidden;
}

img {
  max-width: 100%;
}

.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 60px 120px;
  background: var(--color-bg);
}

.titulo-logo {
  display: block;
  margin: 0;
  color: var(--color-text);
  font-size: 45px;
  font-weight: 300;
  line-height: 1;
  text-decoration: none;
}

.titulo-logo:hover {
  color: var(--color-accent);
}

.menu {
  display: flex;
  gap: 10px;
  margin: 0;
}

.box {
  display: block;
  width: 40px;
  height: 60px;
  background: var(--color-menu);
  transition: background 0.3s ease;
}

.box:hover,
.box.active {
  background: var(--color-accent);
}

.contenedor {
  display: flex;
  align-items: flex-start;
  gap: 70px;
  padding: 40px var(--page-x-desktop) 60px;
}

.oculto {
  display: none !important;
}

@media (max-width: 1100px) {
  body {
    padding-top: var(--header-height-tablet);
  }

  .header {
    padding: 45px 60px;
  }

  .titulo-logo {
    font-size: 36px;
  }

  .box {
    width: 34px;
    height: 52px;
  }

  .contenedor {
    gap: 45px;
    padding: 45px var(--page-x-tablet);
  }
}

@media (max-width: 768px) {
  body {
    padding-top: var(--header-height-mobile);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .header {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px;
    padding: 36px 16px 24px;
  }

  .titulo-logo {
    margin-top: 20px;
    font-size: 26px;
    font-weight: 300;
    line-height: 1.1;
    text-align: center;
  }

  .menu {
    gap: 7px;
    margin-top: 15px;
  }

  .box {
    width: 25px;
    height: 41px;
  }

  .contenedor {
    flex-direction: column-reverse;
    align-items: center;
    justify-content: flex-start;
    gap: 28px;
    padding: 20px 0 40px;
    margin: 0;
  }
}

@media (max-width: 380px) {
  body {
    padding-top: 180px;
  }

  .header {
    padding-top: 34px;
  }

  .titulo-logo {
    margin-top: 50px;
    font-size: 26px;
  }

  .menu {
    gap: 7px;
    margin-top: 15px;
  }
}
