@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  text-decoration: none;
  font-family: "Inter", sans-serif;
}

h2 {
  background-image: linear-gradient(to right, #4247A2 0%, #52B095 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  font-weight: bold;
}

header {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 0;
}
header .box-header {
  background: linear-gradient(to right, #4247A2 0%, #52B095 100%);
  box-shadow: 5px 5px 20px #04031C;
  width: 90%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-top: 20px;
  padding: 0.5rem 0.1rem;
  border-radius: 50px;
  color: #f4f4f4;
}
header .box-header img {
  width: 90%;
  margin: 0 1.5rem;
}
header .box-header .menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  margin: 0 1.5rem;
  width: 60%;
}
header .box-header .menu a {
  width: 82px;
  white-space: nowrap;
  overflow: hidden;
  font-size: 0.7rem;
  color: #f4f4f4;
  font-weight: 400;
}
header .box-header .menu a:hover {
  color: #04031C;
}
@media (min-width: 480px) {
  header .box-header img {
    width: 70%;
  }
  header .box-header .menu {
    width: 60%;
  }
  header .box-header .menu a {
    width: auto;
    white-space: normal;
    overflow: visible;
    font-size: 1.2rem;
    color: #f4f4f4;
    font-weight: 400;
  }
}
@media (min-width: 900px) {
  header {
    background-image: url(../img/banner-home.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position-y: bottom;
    height: 95vh;
  }
}

.box-banner {
  width: 85%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.box-banner .box-title {
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin: 30px 0;
}
.box-banner .box-title h2 {
  font-size: 2.5rem;
}
.box-banner .box-title p {
  margin: 0.8rem 0;
  font-size: 1.5rem;
  color: #04031C;
}
@media (min-width: 501px) {
  .box-banner .box-title h2 {
    font-size: 3.8rem;
  }
  .box-banner .box-title p {
    font-size: 1.9rem;
  }
}
@media (min-width: 900px) {
  .box-banner {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  .box-banner .box-title {
    width: 50vw;
    align-items: flex-start;
    text-align: left;
  }
  .box-banner .box-title h2 {
    font-size: 4rem;
  }
  .box-banner .box-title p {
    font-size: 2rem;
  }
}

.box-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.box-buttons button {
  padding: 1.2rem 1rem;
  border-radius: 12px;
  font-size: 0.7rem;
  font-weight: 500;
  cursor: pointer;
}
.box-buttons .bnt-primary {
  background-color: #4247A2;
  color: #f4f4f4;
  border: 1px solid #4247A2;
}
.box-buttons .bnt-secondary {
  color: #4247A2;
  border: 1px solid #4247A2;
}
.box-buttons .bnt-primary:hover {
  border: 1px solid #52B095;
  background-color: #52B095;
  color: #f4f4f4;
}
.box-buttons .bnt-secondary:hover {
  border: 1px solid #52B095;
  color: #52B095;
}
@media (min-width: 900px) {
  .box-buttons {
    justify-content: start;
    align-items: start;
  }
  .box-buttons button {
    font-size: 1.5rem;
    padding: 1.2rem 3rem;
  }
}

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

.content {
  width: 90%;
  margin: 2rem auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.8rem;
}
.content h2 {
  font-size: 1.8rem;
  text-align: center;
  margin-bottom: 1rem;
}
@media (min-width: 480px) {
  .content h2 {
    font-size: 3rem;
  }
}
@media (min-width: 480px) {
  .content {
    width: 80%;
  }
  .content p {
    font-size: 1.2rem;
  }
}

.box-infos {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}
.box-infos .box-info {
  width: 85%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background-color: #f4f4f4;
  padding: 1rem;
  border-radius: 12px;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2509803922);
}
.box-infos .box-info:hover {
  transform: scale(1.05);
  transition: all 0.3s ease-in-out;
  box-shadow: 0 0 20px #4247A2;
}
.box-infos .box-info img {
  width: 48px;
  border-radius: 0 0 30px 30px;
}
.box-infos .box-info h3 {
  color: #4247A2;
}
.box-infos .box-info p {
  color: #04031C;
}
@media (min-width: 480px) {
  .box-infos {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
  }
  .box-infos .box-info {
    width: 200px;
  }
  .box-infos .box-info img {
    width: 60px;
  }
  .box-infos .box-info p {
    font-size: 0.8rem;
  }
}
@media (min-width: 900px) {
  .box-infos {
    width: 90%;
    justify-content: space-between;
    gap: 2rem;
  }
  .box-infos .box-info {
    width: 30%;
  }
  .box-infos .box-info img {
    width: 70px;
  }
  .box-infos .box-info p {
    font-size: 1rem;
  }
}

#prevFem {
  background: #FDEFEF;
  width: 100%;
}
#prevFem h2 {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0)), linear-gradient(90deg, rgba(249, 1, 111, 0.54) 0%, rgba(147, 8, 133, 0.619615) 41.83%, rgba(208, 56, 170, 0.754793) 70.19%, #851C87 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  font-weight: bold;
  font-size: 1.8rem;
  text-align: center;
  margin-bottom: 1rem;
}
@media (min-width: 480px) {
  #prevFem h2 {
    font-size: 3rem;
  }
}
#prevFem .box-prev:hover {
  transform: scale(1.05);
  transition: all 0.3s ease-in-out;
  box-shadow: 0px 4px 18px rgba(208, 56, 170, 0.7568627451);
}

#prevMas {
  background: #F8F9FA;
  width: 100%;
}
#prevMas h2 {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0)), linear-gradient(90deg, #3373D2 16.04%, #6F95C7 33.14%, #7BB5F5 54.51%, #0074ee 68.5%, #5EA7EF 87.02%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  font-weight: bold;
  font-size: 2rem;
  font-size: 1.8rem;
  text-align: center;
  margin-bottom: 1rem;
}
@media (min-width: 480px) {
  #prevMas h2 {
    font-size: 3rem;
  }
}
#prevMas .box-prev:hover {
  transform: scale(1.05);
  transition: all 0.3s ease-in-out;
  box-shadow: 0px 4px 18px #0074ee;
}

.fem, .masc {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding: 3rem 0;
}
.fem .box-prevs, .masc .box-prevs {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 2.5rem;
}
.fem .box-prevs .box-prev, .masc .box-prevs .box-prev {
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2509803922);
  width: 250px;
  height: 400px;
  border-radius: 20px;
  background: #f4f4f4;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.fem .box-prevs .box-prev h3, .masc .box-prevs .box-prev h3 {
  margin-top: 1rem;
  margin-bottom: 0.5rem;
  color: #04031C;
}
.fem .box-prevs .box-prev ul li, .masc .box-prevs .box-prev ul li {
  font-size: 14px;
  color: #04031C;
}
@media (min-width: 480px) {
  .fem .box-prevs, .masc .box-prevs {
    width: 80%;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
}
@media (min-width: 900px) {
  .fem, .masc {
    justify-content: center;
    gap: 2rem;
  }
  .fem .box-prev, .masc .box-prev {
    margin: 2rem 1rem;
  }
}

.alerts {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin: 2rem 0;
}
.alerts h2 {
  font-size: 1.8rem;
  text-align: center;
  margin-bottom: 1rem;
}
@media (min-width: 480px) {
  .alerts h2 {
    font-size: 3rem;
  }
}
.alerts .box-pink {
  background: #F9D5E5;
  color: #AD346A;
}
.alerts .box-blue {
  background: #CFE2F3;
  color: #2769A3;
}
.alerts .box-green {
  background: #D4EDDA;
  color: #244A2D;
}
.alerts .box-yellow {
  background: #FFE9C2;
  color: #976C00;
}
@media (min-width: 480px) {
  .alerts {
    width: 90%;
  }
}

.box-alerts {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
.box-alerts .box-alert {
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2509803922);
  width: 350px;
  border-radius: 10px;
  padding: 1rem;
  text-align: center;
}
.box-alerts .box-alert .box-title-alert {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.box-alerts .box-alert .box-title-alert img {
  width: 34px;
}
.box-alerts .box-alert .box-title-alert h3 {
  font-size: 1.2rem;
}
@media (min-width: 480px) {
  .box-alerts {
    width: 80%;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
  }
}

footer {
  background-color: #313461;
  color: #f4f4f4;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.footer-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding: 1.5rem 0;
  text-align: center;
  width: 85%;
}
.footer-links a {
  color: #f4f4f4;
}
.footer-links a:hover {
  color: #52B095;
}
.footer-links h4 {
  font-weight: 700;
}
.footer-links .links {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.7rem;
}
@media (min-width: 480px) {
  .footer-links {
    flex-direction: row;
    justify-content: space-around;
  }
  .footer-links .links {
    width: 600px;
  }
}

.footer-copy {
  width: 100%;
  border-top: #f4f4f4 solid 2px;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-copy p {
  width: 80%;
  text-align: center;
}/*# sourceMappingURL=style.css.map */