@font-face {
  font-family: "Inter";
  src: url("./assets/fonts/Inter-VariableFont_slnt,wght.ttf")
    format("truetype-variations");
  font-weight: 400 700 800;
  font-style: normal;
}

.banner {
  background-image: url("./assets/images/image-web-3-desktop.jpg");
  width: 100%;
  height: 300px;
}

:root {
  /* primary colors */

  --soft-orange: hsl(35, 77%, 62%);
  --soft-red: hsl(5, 85%, 63%);

  /* neutral colors */

  --off-white: hsl(36, 100%, 99%);
  --grayish-blue: hsl(233, 8%, 79%);
  --dark-grayish-blue: hsl(236, 13%, 42%);
  --very-dark-blue: hsl(240, 100%, 5%);
}

html {
  font-family: "Inter", sans-serif;
  font-size: 15px;
  color: var(--dark-grayish-blue);
}

nav h3 {
  font-weight: 400;
  font-size: 14px;
  cursor: pointer;
  user-select: none;
}

nav h3:hover {
  color: var(--soft-red);
}

/* grid configuration */

.grid {
  display: grid;
  width: 100%;
}

.main-grid {
  grid-template-columns: 5fr 2fr;
  gap: 30px;
  margin-top: 50px;
}

/* sections */

.section-info-aditional {
  background-color: var(--very-dark-blue);
  width: 100%;
  height: fit-content;
  padding: 20px;
}

.section-info-aditional hr {
  outline: none;
  border: 1px solid var(--off-white);
}

.section-info-aditional h1 {
  font-size: 2rem;
  color: var(--soft-orange) !important;
}

.section-info-aditional h2 {
  color: var(--off-white) !important;
  font-size: 18px;
  cursor: pointer;
}

.section-info-aditional h2:hover {
  color: var(--soft-orange) !important;
}

.section-info-aditional p {
  color: var(--grayish-blue) !important;
}

/* future section */

.future-section h1 {
  font-size: 3rem;
  font-weight: 800;
  color: var(--very-dark-blue);
}

.future-section p {
  font-size: 18px;
  font-weight: 400;
}

.future-section button {
  cursor: pointer;
  background-color: var(--soft-red);
  border: none;
  width: 50%;
  height: 3rem;
  font-weight: 800;
  text-transform: uppercase;
  align-self: flex-end;
  letter-spacing: 2px;
}

.future-section button:hover {
  color: var(--off-white);
  background-color: var(--very-dark-blue);
}

/* section details */

.section-info-future {
  grid-column: 1 / 3;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.section-info-future h1 {
  margin: auto !important;
  font-size: 2rem;
  color: var(--soft-red);
}

.div-future {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 20px;
}

.section-info-future h3 {
  margin-top: 10px !important;
  margin: auto;
  cursor: pointer;
  font-size: 16px;
  color: var(--very-dark-blue);
}

.section-info-future h3:hover {
  color: var(--soft-red);
}

.section-info-future p {
  margin-bottom: auto;
  font-size: 14px;
}

.section-info-future img {
  width: 100px;
  height: auto;
}

/* responsive  */
body {
  padding: 60px 120px;
}

.menu {
  display: flex;
  gap: 30px;
}

.logo-menu {
  display: none;
  background-image: url("./assets/images/icon-menu.svg");
  width: 30px;
  height: 30px;
  z-index: 10;
}

.logo-menu.close {
  background-image: url("./assets/images/icon-menu-close.svg");
}

@media only screen and (max-width: 375px) {
  body {
    padding: 0px 10px;
  }

  .logo-menu {
    display: block;
  }

  .main-grid {
    grid-template-columns: none;
  }

  .grid {
    display: block;
  }

  .banner {
    background-image: url("./assets/images/image-web-3-mobile.jpg");
  }

  section {
    margin-bottom: 30px;
  }

  .section-info-aditional {
    padding: 10px;
  }

  .div-future {
    margin-top: 30px;
  }

  .hidden {
    visibility: hidden;
  }

  .menu {
    display: block;
    position: absolute;
    width: 50%;
    right: 0;
    top: 0;
    padding: 20px;
    height: 100vh;
    background-color: var(--off-white);
  }
}
