* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
  scroll-behavior: smooth;
}

img {
  width: 75vw;
  height: auto;
}

body {
  font-size: calc(12px + 0.390625vw);
  min-height: 100vh;
  max-width: 100vw;
  background: #1fa2ff; /* fallback for old browsers */
  background: -webkit-linear-gradient(
    to right,
    #a6ffcb,
    #12d8fa,
    #1fa2ff
  ); /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(
    to right,
    #a6ffcb,
    #12d8fa,
    #1fa2ff
  ); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}

.nav-glass {
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.397);
  background: #1fa2ffaa; /* fallback for old browsers */
  background: -webkit-linear-gradient(
    to right,
    #a6ffcb,
    #12d8fa,
    #1fa2ff
  ); /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(to right, #a6ffcb, #12d8fa, #1fa2ff);
}

.navbar-logo {
  width: 15%;
}

main {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.gradient-buttons {
  cursor: pointer;
  text-align: center;
  border-radius: 5px;
  color: #fff;
  padding: 1em;
  text-decoration: none;
  background: rgb(208, 37, 46);
  background: -moz-linear-gradient(
    90deg,
    rgba(208, 37, 46, 1) 0%,
    rgba(56, 0, 238, 1) 100%
  );
  background: -webkit-linear-gradient(
    90deg,
    rgba(208, 37, 46, 1) 0%,
    rgba(56, 0, 238, 1) 100%
  );
  background: linear-gradient(
    90deg,
    rgba(208, 37, 46, 1) 0%,
    rgba(56, 0, 238, 1) 100%
  );
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#d0252e",endColorstr="#3800ee",GradientType=1);
}
.top-nav {
  position: fixed;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  color: #fff;
  height: 50px;
  padding: 3em;
  z-index: 10;
  width: 100vw;
}

.menu {
  display: flex;
  align-items: center;
  flex-direction: row;
  list-style-type: none;
  margin: 0;
  z-index: 1;
}

.menu > li {
  margin: 0 1rem;
}

.menu > li > a {
  color: #fff;
  text-decoration: none;
  padding: 1em;
  transition: 0.5s ease;
  border-radius: 5px;
}

.hover:hover {
  background: #fff;
  color: #444;
}

.menu-button-container {
  display: none;
  height: 100%;
  width: 30px;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#menu-toggle {
  display: none;
}

.menu-button,
.menu-button::before,
.menu-button::after {
  display: block;
  background-color: #fff;
  position: absolute;
  height: 4px;
  width: 30px;
  transition: transform 400ms cubic-bezier(0.23, 1, 0.32, 1);
  border-radius: 2px;
}

.menu-button::before {
  content: "";
  margin-top: -8px;
}

.menu-button::after {
  content: "";
  margin-top: 8px;
}

#menu-toggle:checked + .menu-button-container .menu-button::before {
  margin-top: 0px;
  transform: rotate(405deg);
}

#menu-toggle:checked + .menu-button-container .menu-button {
  background: rgba(255, 255, 255, 0);
}

#menu-toggle:checked + .menu-button-container .menu-button::after {
  margin-top: 0px;
  transform: rotate(-405deg);
}

footer {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background: #1984cc;
  height: fit-content;
  padding: 1em;
  width: 100%;
}

footer small,
footer a {
  font-size: 0.7rem;
  color: #fffa;
  text-decoration: none;
  padding: 1em;
  transition: 0.5s ease;
  border-radius: 5px;
}

footer .whatsapp-button {
  display: flex;
  align-items: center;
  gap: 1em;
  width: fit-content;
  font-size: 0.75rem;
}

@media (max-width: 800px) {
  .navbar-logo {
    width: 33.3%;
  }

  .menu-button-container {
    display: flex;
  }
  .menu {
    position: absolute;
    top: 0;
    margin-top: 80px;
    left: 0;
    flex-direction: column;
    width: 100%;
    justify-content: center;
    align-items: center;
    font-size: 0;
  }
  #menu-toggle ~ .menu li {
    height: 0;
    margin: 0;
    padding: 0;
    border: 0;
    transition: height 400ms cubic-bezier(0.23, 1, 0.32, 1);
  }
  #menu-toggle:checked ~ .menu li {
    height: fit-content;
    width: fit-content;
    padding: 1em;
    margin-bottom: 1em;
    transition: height 400ms cubic-bezier(0.23, 1, 0.32, 1);
  }
  #menu-toggle:checked ~ .menu {
    font-size: 1rem;
    box-shadow: 0 30px 30px rgba(0, 0, 0, 0.397);
    background: #1fa2ffaa; /* fallback for old browsers */
    background: -webkit-linear-gradient(
      to right,
      #a6ffcb,
      #12d8fa,
      #1fa2ff
    ); /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, #a6ffcb, #12d8fa, #1fa2ff);
  }
    #menu-toggle:checked ~ .menu-button-container .top-nav {
    background: #1fa2ffaa; /* fallback for old browsers */
    background: -webkit-linear-gradient(
      to right,
      #a6ffcb,
      #12d8fa,
      #1fa2ff
    ); /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, #a6ffcb, #12d8fa, #1fa2ff);
  }
  .menu > li {
    display: flex;
    justify-content: center;
    width: 100%;
    color: white;
    z-index: 3;
  }
  .menu > li:not(:last-child) {
    border-bottom: 1px solid #444;
  }
  #como{
    height: 250px;
  }
  footer{
    margin-top: 120px;
  }
}
