* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: #ffffff;
  color: #111827;
  font-family: Arial, sans-serif;
}

.cabecalho {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1150px;
  padding: 28px 24px;
}

.logo {
  color: #111827;
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 1px;
  text-decoration: none;
}

.logo span {
  color: #2563eb;
}

.menu {
  display: flex;
  gap: 28px;
}

.menu a {
  color: #374151;
  font-size: 15px;
  text-decoration: none;
  transition: color 0.2s ease;
}

.menu a:hover {
  color: #2563eb;
}

.hero {
  margin: 0 auto;
  max-width: 900px;
  padding: 135px 24px;
  text-align: center;
}

.sobretitulo {
  color: #2563eb;
  font-size: 13px;
  font-weight: bold;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

h1 {
  color: #111827;
  font-size: 60px;
  line-height: 1.08;
  margin-bottom: 24px;
}

h1 span {
  color: #2563eb;
}

.descricao {
  color: #4b5563;
  font-size: 19px;
  line-height: 1.6;
  margin: 0 auto 36px;
  max-width: 650px;
}

.botao {
  background-color: #2563eb;
  border-radius: 8px;
  color: #ffffff;
  display: inline-block;
  font-weight: bold;
  padding: 16px 24px;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.botao:hover {
  box-shadow: 0 10px 24px rgba(37, 99, 235, 0.25);
  transform: translateY(-3px);
}

.servicos {
  background-color: #f8fafc;
  padding: 100px 24px;
  text-align: center;
}

h2 {
  color: #111827;
  font-size: 38px;
  line-height: 1.2;
  margin: 0 auto 48px;
  max-width: 650px;
}

.cards {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, 1fr);
  margin: 0 auto;
  max-width: 1100px;
}

.card {
  background-color: #eaf2ff;
  border: 1px solid #cfe0ff;
  border-radius: 12px;
  padding: 32px 24px;
  text-align: left;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.card:hover {
  border-color: #2563eb;
  transform: translateY(-8px);
}

.card h3 {
  color: #1d4ed8;
  font-size: 21px;
  margin-bottom: 14px;
}

.card p {
  color: #374151;
  line-height: 1.6;
}

.sobre {
  display: grid;
  gap: 70px;
  grid-template-columns: 1.2fr 0.8fr;
  margin: 0 auto;
  max-width: 1150px;
  padding: 110px 24px;
}

.sobre h2 {
  margin: 0 0 24px;
  max-width: 620px;
  text-align: left;
}

.sobre-texto > p:not(.sobretitulo) {
  color: #4b5563;
  line-height: 1.7;
  margin-bottom: 16px;
  max-width: 620px;
}

.sobre-destaque {
  background-color: #2563eb;
  border-radius: 12px;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 290px;
  padding: 32px;
}

.sobre-destaque span {
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 2px;
}

.sobre-destaque strong {
  font-size: 29px;
  line-height: 1.2;
}

.contato {
  background-color: #111827;
  padding: 110px 24px;
  text-align: center;
}

.contato h2 {
  color: #ffffff;
  margin-bottom: 20px;
}

.contato > p:not(.sobretitulo) {
  color: #d1d5db;
  font-size: 18px;
  line-height: 1.6;
  margin: 0 auto 32px;
  max-width: 590px;
}

.botao-whatsapp {
  background-color: #25d366;
  color: #061a0c;
}

.botao-whatsapp:hover {
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.25);
}

@media (max-width: 800px) {
  .cards,
  .sobre {
    grid-template-columns: 1fr;
  }

  .sobre {
    gap: 35px;
    padding: 80px 24px;
  }

  h2 {
    font-size: 32px;
  }
}

@media (max-width: 600px) {
  .menu {
    display: none;
  }

  .cabecalho {
    justify-content: center;
  }

  .hero {
    padding: 95px 24px;
  }

  h1 {
    font-size: 42px;
  }

  .descricao {
    font-size: 17px;
  }
}.hero {
  position: relative;
  overflow: hidden;
}

.hero::before,
.hero::after {
  background-color: #eaf2ff;
  border-radius: 50%;
  content: "";
  height: 380px;
  position: absolute;
  width: 380px;
  z-index: -1;
}

.hero::before {
  left: -250px;
  top: 40px;
}

.hero::after {
  bottom: -290px;
  right: -220px;
}

.hero-detalhes {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 42px;
}

.hero-detalhes span {
  background-color: #eaf2ff;
  border: 1px solid #cfe0ff;
  border-radius: 999px;
  color: #1d4ed8;
  font-size: 14px;
  font-weight: bold;
  padding: 10px 16px;
}body {
  font-family: "Manrope", Arial, sans-serif;
}

h1,
h2,
h3,
.logo {
  font-family: "Sora", Arial, sans-serif;
}

.hero::before,
.hero::after,
.hero-detalhes {
  display: none;
}.problema {
  background-color: #111827;
  color: #ffffff;
  padding: 105px 24px;
}

.problema-intro,
.problemas-lista {
  max-width: 1100px;
  margin: 0 auto;
}

.problema-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  margin-bottom: 62px;
}

.problema-intro .sobretitulo {
  grid-column: 1 / -1;
  margin-bottom: -16px;
}

.problema h2 {
  color: #ffffff;
  margin: 0;
  text-align: left;
}

.problema-intro > p:not(.sobretitulo) {
  color: #cbd5e1;
  font-size: 18px;
  line-height: 1.7;
  max-width: 470px;
}

.problemas-lista {
  border-top: 1px solid #334155;
}

.problemas-lista article {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 30px;
  align-items: center;
  padding: 28px 0;
  border-bottom: 1px solid #334155;
}

.problemas-lista span {
  color: #60a5fa;
  font-family: "Sora", Arial, sans-serif;
  font-size: 15px;
  font-weight: 700;
}

.problemas-lista h3 {
  color: #ffffff;
  font-size: 23px;
  line-height: 1.35;
}

@media (max-width: 800px) {
  .problema-intro {
    grid-template-columns: 1fr;
  }

  .problemas-lista h3 {
    font-size: 19px;
  }
}/* Barra fixa no topo */
.cabecalho {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #e5e7eb;
}

/* Seção de problemas em azul suave */
.problema {
  background-color: #edf4ff;
  color: #111827;
}

.problema h2,
.problemas-lista h3 {
  color: #111827;
}

.problema-intro > p:not(.sobretitulo) {
  color: #475569;
}

.problemas-lista {
  border-top-color: #cbdcff;
}

.problemas-lista article {
  border-bottom-color: #cbdcff;
}

.problemas-lista span {
  color: #2563eb;
}/* Versão final da seção de problema */
.problema {
  background-color: #111827;
  color: #ffffff;
}

.problema h2,
.problemas-lista h3 {
  color: #ffffff;
}

.problema-intro > p:not(.sobretitulo) {
  color: #cbd5e1;
}

.problemas-lista {
  border-top-color: #334155;
}

.problemas-lista article {
  border-bottom-color: #334155;
}

.problemas-lista span {
  color: #60a5fa;
}/* O cabeçalho fica apenas no topo do site */
.cabecalho {
  position: relative;
  top: auto;
  z-index: auto;
  background: #ffffff;
  backdrop-filter: none;
}

/* Menu discreto que aparece depois da abertura */
.menu-lateral {
  position: fixed;
  right: 22px;
  top: 50%;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 8px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid #dbeafe;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.12);
  transform: translate(30px, -50%);
  opacity: 0;
  pointer-events: none;
  transition: 0.25s ease;
}

.menu-lateral.mostrar {
  transform: translate(0, -50%);
  opacity: 1;
  pointer-events: auto;
}

.menu-lateral a {
  color: #2563eb;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  padding: 9px 11px;
  border-radius: 8px;
}

.menu-lateral a:hover {
  background: #2563eb;
  color: #ffffff;
}

@media (max-width: 800px) {
  .menu-lateral {
    display: none;
  }
}/* Como funciona */
.processo {
  background: #ffffff;
  padding: 110px 24px;
}

.processo-intro,
.passos {
  max-width: 1100px;
  margin: 0 auto;
}

.processo-intro {
  max-width: 720px;
  text-align: center;
  margin-bottom: 65px;
}

.processo-intro h2 {
  margin: 16px 0 20px;
  color: #111827;
}

.processo-intro > p:last-child {
  color: #475569;
  font-size: 18px;
  line-height: 1.7;
}

.passos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.passo {
  border-top: 3px solid #2563eb;
  padding-top: 24px;
}

.passo span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 20px;
  border-radius: 50%;
  background: #eaf2ff;
  color: #2563eb;
  font-family: "Sora", Arial, sans-serif;
  font-size: 14px;
  font-weight: 800;
}

.passo h3 {
  color: #111827;
  font-size: 21px;
  margin-bottom: 12px;
}

.passo p {
  color: #475569;
  line-height: 1.65;
}

@media (max-width: 800px) {
  .passos {
    grid-template-columns: 1fr;
    gap: 38px;
  }
}/* Ritmo visual das seções */
.servicos,
.sobre {
  background-color: #f5f8ff;
}

.processo {
  background-color: #ffffff;
}/* Rodapé */
.rodape {
  background: #0b1020;
  color: #ffffff;
  padding: 55px 24px 32px;
  text-align: center;
}

.rodape-conteudo {
  max-width: 1100px;
  margin: 0 auto;
}

.rodape-logo {
  color: #ffffff;
  font-family: "Sora", Arial, sans-serif;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.8px;
  text-decoration: none;
}

.rodape-logo span {
  color: #1677ff;
}

.rodape-conteudo > p {
  color: #aebbd0;
  margin: 14px 0 28px;
}

.rodape-links {
  display: flex;
  justify-content: center;
  gap: 22px;
  margin-bottom: 30px;
}

.rodape-links a {
  color: #ffffff;
  font-size: 14px;
  text-decoration: none;
}

.rodape-links a:hover {
  color: #60a5fa;
}

.rodape-direitos {
  border-top: 1px solid #243047;
  font-size: 13px;
  margin: 0 !important;
  padding-top: 25px;
}/* Páginas legais */
.pagina-legal {
  background: #f5f8ff;
  color: #111827;
  font-family: "Manrope", Arial, sans-serif;
}

.legal {
  max-width: 820px;
  margin: 0 auto;
  padding: 70px 24px 90px;
}

.voltar-inicio {
  display: inline-flex;
  color: #2563eb;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 48px;
  text-decoration: none;
}

.voltar-inicio:hover {
  text-decoration: underline;
}

.legal .sobretitulo {
  color: #2563eb;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.4px;
  margin: 0 0 14px;
}

.legal h1 {
  color: #0b1020;
  font-family: "Sora", Arial, sans-serif;
  font-size: clamp(34px, 5vw, 54px);
  line-height: 1.1;
  margin: 0 0 14px;
  text-align: left;
}

.legal-atualizacao {
  color: #64748b;
  font-size: 14px;
  margin: 0 0 52px;
}

.legal section {
  background: #ffffff;
  border: 1px solid #e4ecfa;
  border-radius: 14px;
  margin-bottom: 18px;
  padding: 28px;
}

.legal h2 {
  color: #0b1020;
  font-family: "Sora", Arial, sans-serif;
  font-size: 21px;
  line-height: 1.3;
  margin: 0 0 14px;
  text-align: left;
}

.legal p,
.legal li {
  color: #475569;
  font-size: 16px;
  line-height: 1.75;
}

.legal section p {
  margin: 0;
}

.legal ul {
  margin: 14px 0 0;
  padding-left: 22px;
}

.legal li + li {
  margin-top: 6px;
}

@media (max-width: 600px) {
  .legal {
    padding: 42px 18px 65px;
  }

  .legal section {
    padding: 23px 20px;
  }
}/* Logo oficial em texto */
.logo-nova {
  align-items: center;
  display: inline-flex;
  font-family: "Sora", Arial, sans-serif;
  font-size: 23px;
  font-weight: 800;
  gap: 6px;
  letter-spacing: -1.4px;
  line-height: 1;
  text-decoration: none;
}

.logo-nova .logo-roque {
  color: #0b1020;
}

.logo-nova .logo-ads {
  color: #1677ff;
}.rodape-logo img {
  display: block;
  height: 42px;
  width: auto;
}/* Logo limpa no rodapé */
.rodape-logo {
  align-items: center;
  display: inline-flex;
  font-family: "Sora", Arial, sans-serif;
  font-size: 22px;
  font-weight: 800;
  gap: 6px;
  letter-spacing: -1.4px;
  line-height: 1;
}

.rodape-roque {
  color: #ffffff;
}

.rodape-ads {
  color: #1677ff;
}

.rodape-logo img {
  display: none;
}/* Abertura do site */
.carregamento {
  align-items: center;
  background: #ffffff;
  display: flex;
  inset: 0;
  justify-content: center;
  position: fixed;
  z-index: 9999;
  transition: opacity 0.45s ease, visibility 0.45s ease;
}

.carregamento img {
  animation: entrada-logo 0.65s ease both;
  max-width: min(330px, 72vw);
}

.carregamento.sumir {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}

@keyframes entrada-logo {
  from {
    opacity: 0;
    transform: scale(0.9);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}/* Logo do carregamento */
.logo-carregamento {
  align-items: center;
  animation: entrada-logo 0.65s ease both;
  display: flex;
 gap: 6px;
}

.logo-carregamento-r {
  align-items: center;
  background: #0b1020;
  border-radius: 14px;
  color: #ffffff;
  display: flex;
  font-family: "Sora", Arial, sans-serif;
  font-size: 50px;
  font-weight: 800;
  height: 78px;
  justify-content: center;
  letter-spacing: -3px;
  width: 78px;
}

.logo-carregamento-ads {
  color: #1677ff;
  font-family: "Sora", Arial, sans-serif;
  font-size: 54px;
  font-weight: 800;
  letter-spacing: -4px;
}.contato-emails {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 22px;
}

.contato-emails p {
  margin: 0;
}

.contato-emails strong {
  display: block;
  color: #ffffff;
  font-size: 13px;
  margin-bottom: 5px;
}

.contato-emails a {
  color: #78a7ff;
  font-size: 14px;
  text-decoration: none;
}

.contato-emails a:hover {
  color: #ffffff;
}#sobre {
  scroll-margin-top: 70px;
}