@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
/* ==================================== */
/* 1. VARIÁVEIS
/* ==================================== */
/* ==================================== */
/* 2. ESTILOS GLOBAIS E RESETS
/* ==================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
}

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1rem;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

.section-title {
  background: linear-gradient(to right, #1173D4 0%, #33CC73 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  font-weight: bold;
  font-size: 1.5rem;
  text-align: center;
  margin-bottom: 2.5rem;
  margin-top: -50px;
  font-family: "Inter", sans-serif;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 2.82rem;
  }
}
/* ==================================== */
/* 3. HEADER - MOBILE-FIRST
/* ==================================== */
.header {
  padding: 1.5rem 0 3rem;
  height: auto;
  background-image: none;
}
.header .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
}
.header__nav {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem;
  border-radius: 50px;
  background: linear-gradient(to right, #4247A2 0%, #52B095 100%);
}
.header__logo {
  flex-shrink: 0;
}
.header__logo img {
  width: 90px;
}
.header__menu {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-family: "Roboto", sans-serif;
  list-style: none;
  margin-left: 1rem;
  flex-grow: 1;
}
.header__menu .long-text {
  display: none;
}
.header__menu a {
  white-space: nowrap;
  color: #FEFEFE;
  font-weight: 500;
  transition: color 0.3s ease;
  font-size: 0.8rem;
}
.header__menu a:hover {
  color: #0A215E;
}
.header__content {
  text-align: center;
}
.header__content h2 {
  font-size: 2.82rem;
  font-weight: 700;
  margin-bottom: 1rem;
  background: linear-gradient(to right, #4247A2 0%, #52B095 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.header__content p {
  font-size: 1.625rem;
  color: #04031C;
  max-width: 400px;
}
.header .btn-primary,
.header .btn-secondary {
  padding: 0.75rem 1.25rem;
  font-size: 0.875rem;
  border-radius: 8px;
  font-weight: 600;
  display: inline-block;
  transition: background-color 0.3s;
  cursor: pointer;
  font-family: "Inter", sans-serif;
  text-align: center;
}
.header .btn-primary {
  background-color: #1173D4;
  color: #FFFFFF;
  border: solid 1px #1173D4;
}
.header .btn-primary:hover {
  background-color: #33CC73;
  color: #FDEFEF;
}
.header .btn-secondary {
  background-color: #F8F9FA;
  color: #1173D4;
  border: solid 1px #1173D4;
}
.header .btn-secondary:hover {
  background-color: #33CC73;
  color: #FDEFEF;
}
.header__buttons {
  display: flex;
  gap: 1rem;
  width: 100%;
  flex-direction: row;
  justify-content: flex-start;
}
@media (min-width: 768px) {
  .header {
    flex-direction: row;
    justify-content: flex-start;
  }
  .header .btn-primary,
  .header .btn-secondary {
    padding: 1rem 2rem;
    font-size: 1rem;
  }
}

/* ==================================== */
/* RESPONSIVIDADE (DESKTOP | MACBOOK)
/* ==================================== */
@media (min-width: 1024px) {
  .header {
    height: 90vh;
    background-image: url("./assets/img/bannerHeader.png");
    background-repeat: no-repeat;
    background-size: contain;
    background-color: #F8F9FA;
    padding: 2rem 0;
    font-family: "Inter", sans-serif;
  }
  .header .container {
    align-items: flex-start;
    gap: 2rem;
  }
  .header__nav {
    padding: 0.75rem 1.5rem;
    margin-top: 42px;
    border-radius: 50px;
  }
  .header__logo {
    flex-shrink: 0;
  }
  .header__logo img {
    width: 120px;
  }
  .header__menu {
    display: flex;
    font-family: "Roboto", sans-serif;
    list-style: none;
    flex-grow: 1;
    justify-content: center;
    gap: 2.5rem;
  }
  .header__menu .short-text {
    display: none;
  }
  .header__menu .long-text {
    display: inline;
  }
  .header__menu a {
    color: #FEFEFE;
    font-weight: 500;
    font-size: 1.25rem;
    transition: color 0.3s ease;
  }
  .header__menu a:hover {
    color: #0A215E;
  }
  .header__content {
    text-align: left;
    margin-top: 4rem;
  }
  .header__content h2 {
    font-size: 2.82rem;
    background: linear-gradient(to right, #1173D4 0%, #33CC73 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    font-weight: bold;
    max-width: 16ch;
    /* limita a largura para cerca de 16 caracteres */
  }
  .header__content p {
    font-size: 1.625rem;
    color: #5F646B;
    max-width: 500px;
  }
  .header__buttons {
    flex-direction: row;
    justify-content: flex-start;
  }
}
/* ================================================= */
/* RESPONSIVIDADE - APENAS PARA (IPADS)
/* ================================================= */
@media (min-width: 768px) and (max-width: 1023px) {
  .header {
    background-image: url("./assets/img/bannerHeader.png");
    background-size: contain;
    background-repeat: no-repeat;
  }
  .header .container {
    align-items: flex-start;
  }
  .header__nav {
    justify-content: flex-start;
    gap: 2rem;
    padding: 0.75rem 2rem;
  }
  .header__logo img {
    width: 120px;
  }
  .header__menu {
    display: flex;
    font-family: "Roboto", sans-serif;
    list-style: none;
    gap: 1.5rem;
  }
  .header__menu .short-text {
    display: none;
  }
  .header__menu .long-text {
    display: inline;
  }
  .header__menu a {
    font-size: 1.25rem;
  }
  .header__content {
    text-align: left;
    margin-top: 3rem;
  }
  .header__content h2 {
    font-size: 2.82rem;
    background: linear-gradient(to right, #1173D4 0%, #33CC73 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    font-weight: bold;
    max-width: 16ch;
    /* limita a largura para cerca de 16 caracteres */
  }
  .header__content p {
    font-size: 1.625rem;
    color: #5F646B;
    max-width: 430px;
  }
  .header__buttons {
    justify-content: flex-start;
  }
}
/* ==================================== */
/* 4. SEÇÃO IMPORTÂNCIA - MOBILE FIRST
/* ==================================== */
.importance {
  padding: 5rem 0;
  background-color: #F8F9FA;
  font-family: "Inter", sans-serif;
  /* ==================================== */
  /* RESPONSIVIDADE (DESKTOP | MACBOOK)
  /* ==================================== */
}
.importance p {
  color: #04031C;
  font-size: 0.94rem;
  margin-bottom: 2rem;
}
.importance__cards {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 1.5rem;
}
.importance .importance-card {
  text-align: center;
  border: solid 1px #04031C;
  border-radius: 8px;
  padding: 1rem;
  background-color: #fff;
  box-shadow: 0 0 1rem rgba(95, 100, 107, 0.2), 0 1.5rem 1.5rem rgba(10, 33, 94, 0.1);
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}
.importance .importance-card img {
  margin: 0 auto 1rem;
  width: 50px;
}
.importance .importance-card h3 {
  color: #04031C;
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
}
.importance .importance-card p {
  font-size: 1.15rem;
}
.importance .importance-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 1.5rem 1.5rem rgba(10, 33, 94, 0.2);
  transform: scale(1.1);
  cursor: pointer;
}
@media (min-width: 768px) {
  .importance {
    padding: 4rem;
  }
  .importance p {
    font-size: 1.25rem;
  }
  .importance__cards {
    flex-direction: row;
    justify-content: space-between;
  }
  .importance .importance-card {
    flex-basis: 30%;
  }
}

/* ==================================== */
/* 6. SEÇÃO PREVENÇÃO - MOBILE FIRST
/* ==================================== */
.prevention {
  padding: 6rem 0;
  font-family: "Roboto", sans-serif;
  /* ==================================== */
  /* RESPONSIVIDADE (DESKTOP | MACBOOK)
  /* ==================================== */
}
.prevention .prevention__cards {
  gap: 4rem;
}
.prevention.pink-bg {
  background-color: #FDEFEF;
}
.prevention.pink-bg h2 {
  background: linear-gradient(to right, rgba(249, 1, 111, 0.5411764706) 64%, rgba(147, 8, 133, 0.6196078431) 61.96%, rgba(208, 56, 170, 0.7529411765) 75.48%, #851c87 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: bold;
  font-size: 2rem;
  text-align: center;
  margin-bottom: 2.5rem;
  margin-top: -50px;
  font-family: "Inter", sans-serif;
}
.prevention.blue-bg {
  background-color: #F8F9FA;
}
.prevention.blue-bg h2 {
  background: linear-gradient(to right, #3373D2 6.04%, #6F95C7 33.14%, #7BB5F5 54.51%, #0074EE 68.5%, #5EA7EF 7.02%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: bold;
  font-size: 2rem;
  text-align: center;
  margin-bottom: 2.5rem;
  margin-top: -50px;
  font-family: "Inter", sans-serif;
}
.prevention__cards {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
.prevention .prevention-card {
  background-color: #FFFFFF;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-width: 150px;
  min-height: 400px;
  max-width: 255px;
  width: 100%;
}
.prevention .prevention-card img {
  width: 105px;
  margin-bottom: 1rem;
}
.prevention .prevention-card h3 {
  color: #000000;
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}
.prevention .prevention-card ul li {
  line-height: 1.3;
  font-size: 0.875rem;
  color: #000000;
  text-align: left;
  padding: 0.4rem;
}
.prevention .prevention-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 1.5rem 1.5rem rgba(10, 33, 94, 0.2);
  transform: scale(1.1);
  cursor: pointer;
}
@media (min-width: 768px) {
  .prevention.pink-bg h2 {
    font-size: 2.82rem;
  }
  .prevention.blue-bg h2 {
    font-size: 2.82rem;
  }
  .prevention__cards {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .prevention .prevention-card {
    flex-basis: calc(33.333% - 1rem);
  }
}

/* ==================================== */
/* 7. SEÇÃO ALERTAS - MOBILE FIRST
/* ==================================== */
.alerts {
  padding: 4rem 0;
  /* ==================================== */
  /* RESPONSIVIDADE (DESKTOP | MACBOOK)
  /* ==================================== */
}
.alerts__container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.alerts__boxes {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4rem;
  width: 100%;
}
.alerts .alert-box {
  width: 20rem;
  height: 10rem;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem;
  border-radius: 8px;
  font-family: "Roboto", sans-serif;
  box-shadow: 0 0 3rem rgba(95, 100, 107, 0.2), 0 1.5rem 1.5rem rgba(10, 33, 94, 0.1);
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}
.alerts .alert-box__content {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.alerts .alert-box img {
  flex-shrink: 0;
  width: 2.18rem;
  height: 2.18rem;
  margin-top: -10px;
}
.alerts .alert-box--pink {
  background-color: #F9D5E5;
}
.alerts .alert-box--pink h3,
.alerts .alert-box--pink p {
  color: #AD346A;
}
.alerts .alert-box--blue {
  background-color: #CFE2F3;
}
.alerts .alert-box--blue h3,
.alerts .alert-box--blue p {
  color: #2769A3;
}
.alerts .alert-box--green {
  background-color: #D4EDDA;
}
.alerts .alert-box--green h3,
.alerts .alert-box--green p {
  color: #244A2D;
}
.alerts .alert-box--yellow {
  background-color: #FFE9C2;
}
.alerts .alert-box--yellow h3,
.alerts .alert-box--yellow p {
  color: #976C00;
}
.alerts .alert-box h3 {
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
  font-weight: bold;
}
.alerts .alert-box p {
  font-size: 1rem;
  line-height: 1.4;
  margin-top: -15px;
}
.alerts .alert-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 1.5rem 1.5rem rgba(10, 33, 94, 0.2);
  transform: scale(1.1);
  cursor: pointer;
}
@media (min-width: 1024px) {
  .alerts .alert-box {
    width: 26rem;
    height: 9rem;
  }
}

/* ==================================== */
/* 8. RODAPÉ
/* ==================================== */
/* ==================================== */
/* ESTILOS DO FOOTER
/* ==================================== */
.footer {
  background-color: #2A2F5B;
  color: #FEFEFE;
  padding: 4rem 0 2rem;
  line-height: 1.7;
  font-family: "Poppins", sans-serif;
  /* ==================================== */
  /* RESPONSIVIDADE PARA TELAS MAIORES
  /* ==================================== */
}
.footer .container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1rem;
}
.footer__top {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  margin-bottom: 3rem;
  align-items: center;
}
.footer__column {
  text-align: center;
}
.footer__column h3 {
  font-size: 1.125rem;
  color: #FFFFFF;
  margin-bottom: 1.25rem;
  font-weight: 600;
}
.footer__column p,
.footer__column a {
  font-size: 1rem;
}
.footer__about .footer__logo {
  max-width: 150px;
  margin-bottom: 1rem;
  margin-left: auto;
  margin-right: auto;
}
.footer__about .footer__title__text {
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: 1rem;
}
.footer__about p {
  max-width: 27ch;
  /* limita a largura para cerca de 27 caracteres */
}
.footer__links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer__links li {
  margin-bottom: 0.75rem;
}
.footer__links a {
  text-decoration: none;
  color: #FEFEFE;
  transition: color 0.3s ease;
}
.footer__contact {
  margin-left: auto;
  margin-right: auto;
  font-size: 1rem;
}
.footer__contact p {
  margin-bottom: 0.75rem;
}
.footer__contact .link-whats__text {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
}
.footer__contact .link-whats__text a {
  text-align: center;
}
.footer__contact .link-whats__text a:hover {
  color: #33CC73;
}
.footer__contact .footer__emergency {
  margin-top: 1.3rem;
  opacity: 0.8;
  font-size: 0.88rem;
}
.footer__copyright {
  padding-top: 2rem;
  margin-top: 3rem;
  border-top: 1px solid #d9e0ea;
}
.footer__copyright p {
  text-align: center;
  font-size: 1rem;
  opacity: 0.8;
}
.footer__copyright span {
  color: #33CC73;
}
.footer__copyright span:hover {
  color: #FFE9C2;
  transform: scale(1.1);
  cursor: pointer;
  font-size: 1.1rem;
}
@media (min-width: 768px) {
  .footer__top {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
  .footer__column {
    text-align: left;
  }
  .footer__column.footer__about {
    flex-basis: 40%;
  }
  .footer__column.footer__about .footer__logo {
    margin-left: 0;
    margin-right: 0;
  }
  .footer__column.footer__links, .footer__column.footer__contact {
    flex-basis: 25%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
}/*# sourceMappingURL=style.css.map */