:root {
  --azul: #0f0280;
  --azul-escuro: #0f0059;
  --verde: #25d366;
  --texto: #111;
  --largura: 1160px;
}

* {
  box-sizing: border-box;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--texto);
  background: #fff;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.45;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

.container {
  width: min(calc(100% - 40px), var(--largura));
  margin-inline: auto;
}

h1,
h2,
p {
  margin-top: 0;
}

h2 {
  margin-bottom: 28px;
  font-size: 20px;
  font-weight: 400;
  text-align: center;
}

.hero {
  height: 770px;
  display: flex;
  justify-content: center;
  padding: 48px 5vw 42px;
  color: #fff;
  background:
    linear-gradient(90deg, transparent 20%, rgb(4 18 53 / 12%) 48%, rgb(4 18 53 / 52%) 100%),
    var(--azul-escuro);
}

.hero__links {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: min(100%, 470px);
  margin-left: auto;
  gap: 22px;
}

.hero h1 {
  margin: 0 0 19px;
  font-size: 19px;
  font-weight: 700;
  line-height: 1.2;
}

.hero__intro h2 {
  margin: 0 0 15px;
  color: #fff;
  font-size: 35px;
  font-weight: 700;
  line-height: 1.05;
  text-align: left;
}

.hero__destaque {
  margin: 0 0 12px;
  color: #78aaff;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.25;
}

.hero__orientacao {
  max-width: 380px;
  margin: 0;
  font-size: 15px;
  line-height: 1.35;
}

.hero__acoes {
  display: grid;
  gap: 12px;
}

.hero__link {
  display: grid;
  min-height: 78px;
  grid-template-columns: 58px 1fr 18px;
  align-items: center;
  gap: 13px;
  width: 100%;
  padding: 9px 14px 9px 9px;
  border-radius: 9px;
  color: var(--azul-escuro);
  background: #fff;
  box-shadow: 0 5px 16px rgb(0 0 0 / 14%);
  text-align: left;
  text-decoration: none;
  transition: background-color .2s ease, transform .2s ease;
}

.hero__icone {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: #0759aa;
  font-size: 29px;
  font-weight: 700;
}

.hero__texto {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 2px;
}

.hero__texto strong {
  font-size: 16px;
  line-height: 1.2;
}

.hero__texto small {
  color: #333;
  font-size: 12px;
  line-height: 1.25;
}

.hero__seta {
  font-size: 27px;
  line-height: 1;
}

.hero__link:hover,
.hero__link:focus-visible {
  color: var(--azul);
  background: #f0f0f5;
  transform: translateY(-1px);
}

.servicos {
  min-height: 770px;
  padding: 124px 0 74px;
}

.servicos__lista {
  display: grid;
  gap: 49px;
}

.servico {
  display: grid;
  grid-template-columns: 38% 62%;
  align-items: center;
  min-height: 128px;
}

.servico__imagem {
  justify-self: center;
}

.servico__imagem img {
  width: auto;
  max-height: 117px;
}

.servico__acao {
  text-align: center;
}

.botao {
  display: flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  width: 100%;
  border-radius: 6px;
  color: #fff;
  background: var(--azul);
  font-size: 17px;
  font-weight: 700;
  text-decoration: none;
  transition: background-color .2s ease, transform .2s ease;
}

.servico__acao .botao {
  width: 62%;
  margin: 0 auto;
}

.servico__acao p {
  margin-bottom: 18px;
  font-size: 18px;
}

.botao:hover,
.botao:focus-visible {
  background: #1808a8;
  transform: translateY(-1px);
}

.sobre {
  min-height: 714px;
  display: grid;
  place-items: center;
  padding: 78px 0;
  color: #fff;
  background: var(--azul-escuro);
}

.sobre__conteudo {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.sobre h2 {
  margin-bottom: 27px;
}

.sobre img {
  width: 345px;
  aspect-ratio: 1.285;
  border-radius: 37px;
  object-fit: cover;
}

.sobre p {
  max-width: 1060px;
  margin: 27px auto 0;
  font-size: 17px;
  text-align: center;
}

.sobre__botao {
  display: flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  width: min(100%, 420px);
  margin-top: 25px;
  padding: 10px 24px;
  border-radius: 6px;
  color: var(--azul-escuro);
  background: #fff;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  transition: background-color .2s ease, transform .2s ease;
}

.sobre__botao:hover,
.sobre__botao:focus-visible {
  background: #f0f0f5;
  transform: translateY(-1px);
}

.contato {
  min-height: 620px;
  padding: 101px 0 75px;
}

.contato .container {
  width: min(calc(100% - 80px), 1000px);
}

.contato h2 {
  margin-bottom: 24px;
  font-size: 28px;
  font-weight: 700;
}

.contato__intro {
  margin-bottom: 26px;
  font-size: 18px;
  text-align: center;
}

.contato__grade {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: start;
  gap: 80px;
}

.contato__grade img {
  width: 100%;
  height: 251px;
  border-radius: 17px;
  object-fit: cover;
}

.contato__dados .botao {
  margin-top: 0;
}

.contato__dados {
  text-align: center;
}

.contato__dados p {
  margin: 22px 0 0;
  color: #fff;
  font-size: 17px;
}

.rodape {
  min-height: 204px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 25px;
  padding: 55px 20px 4px;
  border-top: 23px solid #fafafa;
  font-size: 13px;
  text-align: center;
}

.rodape p {
  margin-bottom: 0;
  color: #555;
}

.whatsapp {
  position: fixed;
  right: 20px;
  bottom: 18px;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 10px 18px;
  border: 5px solid #8be8b0;
  border-radius: 999px;
  color: #fff;
  background: var(--verde);
  box-shadow: 0 6px 20px rgb(0 0 0 / 16%);
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  transition: transform .2s ease, background-color .2s ease;
}

.whatsapp__icone {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
}

.whatsapp:hover,
.whatsapp:focus-visible {
  background: #1ebe5d;
  transform: translateY(-2px);
}

:focus-visible {
  outline: 3px solid #ffd54f;
  outline-offset: 4px;
}

@media (max-width: 900px) {
  .hero {
    height: 680px;
    padding: 36px 30px;
    background-position: 42% center;
  }

  .hero__links {
    width: min(100%, 420px);
  }

  .servicos {
    padding-top: 88px;
  }

  .servico {
    grid-template-columns: 34% 66%;
  }

  .contato__grade {
    gap: 28px;
  }

  .contato__grade img {
    height: 190px;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(calc(100% - 30px), var(--largura));
  }

  .hero {
    min-height: 720px;
    height: auto;
    padding: 28px 18px 32px;
    background:
      linear-gradient(180deg, rgb(4 18 53 / 8%) 0%, rgb(4 18 53 / 27%) 38%, rgb(4 18 53 / 68%) 100%),
      var(--azul-escuro);
  }

  .hero__links {
    justify-content: flex-end;
    width: 100%;
    margin: 0;
    gap: 18px;
  }

  .hero h1 {
    margin-bottom: 14px;
    font-size: 17px;
  }

  .hero__intro h2 {
    font-size: 29px;
  }

  .hero__destaque {
    font-size: 17px;
  }

  .hero__orientacao {
    max-width: 330px;
    font-size: 14px;
  }

  .hero__link {
    min-height: 70px;
    grid-template-columns: 52px 1fr 16px;
    gap: 10px;
  }

  .hero__icone {
    width: 52px;
    height: 52px;
    font-size: 25px;
  }

  .hero__texto strong {
    font-size: 15px;
  }

  .servicos {
    min-height: 0;
    padding: 64px 0;
  }

  .servicos__lista {
    gap: 58px;
  }

  .servico {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .servico__imagem img {
    min-width: 175px;
  }

  .servico__acao .botao {
    width: 100%;
  }

  .servico__acao p {
    font-size: 16px;
  }

  .sobre {
    min-height: 590px;
    padding: 66px 0;
  }

  .sobre img {
    width: min(100%, 345px);
    border-radius: 28px;
  }

  .sobre p {
    font-size: 16px;
  }

  .contato {
    min-height: 0;
    padding: 66px 0 72px;
  }

  .contato .container {
    width: min(calc(100% - 30px), var(--largura));
  }

  .contato__intro {
    font-size: 16px;
  }

  .contato__grade {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .contato__grade img {
    height: auto;
    aspect-ratio: 1.6;
  }

  .rodape {
    min-height: 200px;
    padding-bottom: 82px;
  }

  .whatsapp {
    right: 12px;
    bottom: 12px;
    gap: 9px;
    padding: 9px 15px;
    border-width: 4px;
    font-size: 16px;
  }

  .whatsapp__icone {
    width: 34px;
    height: 34px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  * {
    transition: none !important;
  }
}

/* Capa Área do Cliente */
.hero {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  min-height: 0;
  padding: 0;
  overflow: hidden;
  background: #03070d;
}

.hero__imagem {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.hero__links {
  position: absolute;
  left: 5.5%;
  bottom: 5.5%;
  width: min(46%, 680px);
  margin: 0;
}

.hero__acoes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.hero__link {
  display: flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 9px 14px;
  border: 1px solid #2d20a5;
  border-radius: 8px;
  color: #fff;
  background: #0e0280;
  box-shadow: 0 6px 16px rgb(14 2 128 / 28%);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
}

.hero__link:hover,
.hero__link:focus-visible {
  color: #fff;
  background: #190ca0;
  transform: translateY(-1px);
}

@media (max-width: 640px) {
  .hero {
    display: flex;
    flex-direction: column;
    min-height: 0;
    padding: 0;
    background: #020811;
  }

  .hero__imagem {
    flex: none;
    width: 100%;
    height: auto;
    object-fit: contain;
  }

  .hero__links {
    position: static;
    width: 100%;
    padding: 18px 14px 24px;
    background: #020811;
  }

  .hero__acoes {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .hero__link {
    min-height: 58px;
    padding: 12px 18px;
    border-radius: 10px;
    font-size: 16px;
  }
}
