* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Archivo", sans-serif;
}

body {
  overflow-x: hidden;
  overflow-y: auto;
}

svg {
  /* display: block; */
  width: 100%;
  height: auto; /* mantém proporção do viewBox */
  margin-top: 140px;
}

header {
  position: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 40px;
  width: 100%;
  height: 140px;
  backdrop-filter: blur(80px);
  background: #fff;

  box-shadow:
    0px 1px 3px 0px rgba(0, 0, 0, 0.3),
    0px 4px 8px 3px rgba(0, 0, 0, 0.15);
}

.logo {
  height: 60px;
  width: auto;
}

.banner-mobile {
  display: none;
}

.banner {
  width: 100vw;
  overflow: hidden; /* garante que nada estoure */
}

/* */
.footer-container {
  width: 100%;
  background: #ffffff;
  padding: 64px 256px;
  color: #0057ff;
}

/* .footer-container > * {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
} */

.footer-header {
  text-align: center;
  margin-bottom: 40px;
}

.logo-footer {
  max-width: 383px;
  height: 112px;
  gap: 16px;
}

.slogan {
  font-size: 36px;
  color: #0057ff;
  margin-bottom: 44px;
  font-weight: 600;
  font-style: italic;
}

.footer-columns {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  align-items: flex-start;
  margin-bottom: 44px;
}

.col h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #012467;
}

.col.divider {
  position: relative;
}

.col.divider::before,
.col.divider::after {
  content: "";
  position: absolute;
  top: 2px;
  height: 100%;
  width: 1px;
  background: #012467;
  gap: 32px;
}

.col.divider::before {
  left: -24px;
}

.col.divider::after {
  right: -24px;
}

.item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.item img {
  width: 24px;
  height: 22px;
}

.item a {
  margin-bottom: 8px;
}

.item a,
.item p {
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
  color: #012467;
  text-decoration: none;
}

.regulacao {
  width: 100%;
  display: flex;
  align-items: center;
  height: 58px;
  max-width: 310px;
  /* gap: 12px; */
}

.ans-logo {
  width: 170px;
  height: 34px;
}

.ans-box {
  padding: 6px 10px;
  font-size: 11px;
  text-align: center;
}

.ans-box span {
  font-weight: 600;
}

.footer-bottom {
  border-top: 1px solid #012467;
  margin-top: 24px;
  padding-top: 24px;

  display: flex;
  justify-content: space-between;
  align-items: center;

  font-size: 12px;
}

.social-media {
  display: flex;
  align-items: center;
  gap: 10px;
}

.social-media span {
  font-size: 26px;
  font-weight: 600;
  color: #012467;
}

.social-media img {
  width: 31px;
  height: 31px;
  margin-top: 5px;
}

.footer-bottom p {
  font-weight: 700;
  font-size: 26px;
  line-height: 25.6px;
  color: #012467;
}

.ans-svg {
  /* display: block; */
  width: 100%;
  height: auto;
  margin: 0 auto;
}

.telefone {
  font-weight: 500;
  line-height: 22px;
}

.item-1 {
  display: flex;
  align-items: center;
  gap: 8px;
}

.item-1 img {
  width: 24px;
  height: 22px;
}

.item-1 a {
  margin-bottom: 8px;
}

.item-1 p {
  font-size: 20px;
  font-weight: 500;
  line-height: 22px;
  color: #012467;
  text-decoration: none;
}

/* =========================
   MOBILE – até 768px
========================= */
@media (max-width: 768px) {
  /* HEADER */
  header {
    height: 100px;
    padding: 10px 16px;
  }

  .logo {
    height: 45px;
  }

  /* ESCONDE BANNER DESKTOP */
  .banner {
    display: none;
  }

  /* MOSTRA BANNER MOBILE */
  .banner-mobile {
    display: block;
    width: 100vw;
    overflow: hidden;
  }

  svg {
    margin-top: 100px;
  }

  /* FOOTER */
  .footer-container {
    padding: 40px 20px;
  }

  .footer-header {
    margin-bottom: 32px;
  }

  .logo-footer {
    max-width: 260px;
    height: auto;
  }

  .slogan {
    font-size: 20px;
    line-height: 26px;
    margin-bottom: 32px;
  }

  /* COLUNAS → UMA EMBAIXO DA OUTRA */
  .footer-columns {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }

  /* REMOVE DIVISÓRIAS VERTICAIS */
  .col.divider::before,
  .col.divider::after {
    display: none;
  }

  .col h3 {
    font-size: 20px;
    margin-bottom: 16px;
  }

  /* ITENS DE CONTATO */
  .item,
  .item-1 {
    justify-content: center;
  }

  .item a,
  .item p,
  .item-1 p {
    font-size: 16px;
    line-height: 22px;
  }

  /* REGULAÇÃO / ANS */
  .regulacao {
    justify-content: center;
    margin: 0 auto;
  }

  .ans-logo {
    width: 140px;
    height: auto;
  }

  .ans-box {
    font-size: 10px;
  }

  /* FOOTER BOTTOM */
  .footer-bottom {
    flex-direction: column;
    gap: 24px;
    text-align: center;
  }

  .footer-bottom p {
    font-size: 14px;
    line-height: 20px;
  }

  /* REDES SOCIAIS */
  .social-media {
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
  }

  .social-media span {
    font-size: 20px;
    width: 100%;
  }

  .social-media img {
    width: 28px;
    height: 28px;
    margin-top: 0;
  }
}
