* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  font-family: "Lucida Sans", "Lucida Sans Unicode", "Lucida Grande", Arial, sans-serif;
  background: #f4f4f4;
}

body {
  min-height: 100vh;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 16px;
  background-image: url("imagens/fundo.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.conteudo {
  width: min(100%, 530px);
  text-align: center;
  margin-top: -10px;
}

.logo {
  width: clamp(180px, 26vw, 320px);
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto 34px;
}

.subtitulo {
  margin: 0 0 58px;
  color: #00984d;
  font-size: clamp(19px, 2vw, 25px);
  letter-spacing: 0.48em;
  text-indent: 0.48em;
  font-weight: 400;
}

.cta-area {
  margin-bottom: 52px;
}

.cta-texto {
  margin: 0 0 8px;
  color: #0b5fb3;
  font-size: clamp(22px, 2.2vw, 33px);
  line-height: 1.2;
  font-weight: 400;
}

.cta-botao {
  display: inline-block;
  transition: transform 0.2s ease, filter 0.2s ease;
}

.cta-botao:hover {
  transform: translateY(-2px);
  filter: brightness(1.02);
}

.cta-botao img {
  width: clamp(118px, 10vw, 138px);
  height: auto;
  display: block;
}

.contato {
  color: #737373;
  font-size: clamp(16px, 1.25vw, 20px);
  line-height: 1.25;
}

.contato p {
  margin: 0;
}

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

@media (max-width: 768px) {
  .conteudo {
    width: min(100%, 360px);
  }

  .subtitulo {
    margin-bottom: 42px;
    letter-spacing: 0.32em;
    text-indent: 0.32em;
  }

  .cta-area {
    margin-bottom: 40px;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 24px 14px;
    background-position: 60% center;
  }

  .logo {
    margin-bottom: 26px;
  }

  .subtitulo {
    font-size: 16px;
    letter-spacing: 0.22em;
    text-indent: 0.22em;
  }

  .cta-texto {
    font-size: 24px;
  }

  .contato {
    font-size: 15px;
  }
}
