* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  overflow-x: hidden;
  overflow-y: auto;
}

svg {
  display: block; /* remove whitespace inline do baseline */
  width: 100%;
  height: auto; /* mantém proporção do viewBox */
  margin-top: 80px;
}

header {
  position: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 40px;
  width: 100%;
  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 */
  margin-bottom: 20px;
}

/* */

.contato {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 20px 0;
}

.contato h3 {
  text-align: center;
  font-size: 2.5rem;
  margin: 0;
  color: #00995c;
  font-weight: 700;
}

.contato h3 span {
  color: #80c783;
}

.telefone,
.email {
  display: flex;
  align-items: center;
  justify-content: center; /* centraliza o conjunto */
  gap: 8px;
  width: 100%;
}

.telefone img,
.email img {
  width: 22px;
  height: 22px;
}

p {
  color: #00995c;
  font-size: 22px;
  font-weight: 400;
  margin: 0;
}

.social-media img {
  width: 28px;
  height: 28px;
  margin: 10px 4px;
}

a {
  text-decoration: none;
}

.email {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
}

.email img {
  width: 22px;
  height: 22px;
}

.email a {
  color: #00995c;
  font-size: 22px;
  font-weight: 400;
  text-decoration: none; /* remove sublinhado */
}

@media (max-width: 768px) {
  header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999; /* garante que fique acima do resto */

    display: flex;
    justify-content: center;
    align-items: center;

    padding: 12px 20px;
    width: 100%;

    backdrop-filter: blur(40px);
    background: #fff;
    height: 90px;

    box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.2), 0px 4px 8px rgba(0, 0, 0, 0.1);
  }

  .logo {
    height: 40px;
  }

  .banner {
    display: none;
  }

  .banner-mobile {
    display: block;
  }

  h3 {
    font-size: 28px;
  }

  a {
    font-size: 20px;
  }

  p {
    font-size: 20px;
    text-align: center;
  }
}
