* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: clamp(1.5rem, 4vw, 2rem);
  background: linear-gradient(
    116.82deg,
    #0e4194 0%,
    #564e9f 40.79%,
    #815ca9 66.57%,
    #a56db2 78.62%,
    #c580ba 87.04%,
    #e394c3 100%
  );
  min-height: 100vh;
  font-family: "Roboto", sans-serif;
}

img {
  max-width: 100%;
  height: auto;
}

/* HOME */
#home {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

#home > .logo {
  margin-bottom: 60px;
  max-width: 260px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

#home > .hero {
  margin-bottom: 50px;
  width: min(100%, 520px);
  display: flex;
  align-items: center;
  justify-content: center;
}

#home .content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 16px;
  width: min(100%, 956px);
  padding: 0 1.25rem;
}

#home .content h2 {
  font-weight: 900;
  font-size: clamp(2rem, 5vw + 1rem, 5rem);
  color: white;
  text-shadow: 0px 4px 4px #000000;
  margin: 0;
}

#home .content .orange {
  color: #fe8623;
}

#home .content p {
  color: white;
  font-size: clamp(1.125rem, 2vw + 0.75rem, 2rem);
  margin: 0;
}

#home .award {
  color: #fe8623;
  background: #fe86231a;
  border: 1px solid #fe86232e;
  padding: 6px 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 32px;
}

#home .info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin: 32px 0;
}

#home .people,
#home .verified {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: clamp(1.125rem, 1.5vw + 0.75rem, 1.5rem);
  color: white;
}

#home .people img,
#home .verified img {
  height: 32px;
}

#home .button img {
  width: 32px;
}

#home .button {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  background: #4f2569;
  border: 2px solid #ffffff;
  padding: 24px 40px;
  font-size: clamp(1.125rem, 2vw + 0.75rem, 2rem);
  font-weight: bold;
  text-decoration: none;
  color: white;
  border-radius: 60px;
  text-align: center;
}

#home .button:hover {
  background: #481857ff;
}

#home .footer {
  color: white;
  font-size: 22px;
  margin-top: 48px;
}

@media (max-width: 1024px) {
  #home > .logo {
    margin-bottom: 40px;
  }

  #home > .hero {
    margin-bottom: 32px;
  }

  #home .info {
    gap: 24px;
  }
}

@media (max-width: 768px) {
  body {
    padding: clamp(1rem, 4vw, 1.5rem);
  }

  #home {
    gap: 20px;
  }

  #home .info {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

  #home .people,
  #home .verified {
    justify-content: center;
  }

  #home .button {
    width: 100%;
    max-width: 420px;
  }
}

@media (max-width: 480px) {
  #home > .logo {
    margin-bottom: 24px;
  }

  #home > .hero {
    margin-bottom: 24px;
  }

  #home .info {
    margin: 24px 0;
  }

  #home .button {
    padding: 18px 28px;
    border-width: 1.5px;
  }

  #home .footer {
    font-size: 1rem;
    margin-top: 32px;
  }
}

/* DIAGNOSTICO */
.cog-header > img {
  width: 180px !important;
}

.cog-form__container {
  padding: 32px !important;
}
