* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --escuro: #050706;
  --escuro-2: #0b1110;
  --claro: #f3f5ed;
  --claro-2: #ffffff;
  --texto: #ffffff;
  --texto-escuro: #101312;
  --cinza: #a7b1ad;
  --cinza-escuro: #4d5653;
  --verde: #8cff4f;
  --verde-2: #5eea67;
  --ciano: #10d6c4;
  --borda: rgba(255, 255, 255, 0.14);
  --sombra: rgba(16, 214, 196, 0.25);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: var(--escuro);
  color: var(--texto);
  line-height: 1.5;
  overflow-x: hidden;
}

@media (hover: hover) {
  body,
  a,
  button,
  .servico-card,
  .projeto-card,
  .processo-item,
  .ia-item,
  .btn {
    cursor: none;
  }
}

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

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

.container {
  width: 92%;
  max-width: 1240px;
  margin: 0 auto;
}

section {
  padding: 95px 0;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: var(--verde);
  background: rgba(140, 255, 79, 0.10);
  border: 1px solid rgba(140, 255, 79, 0.22);
  margin-bottom: 18px;
}

.tag::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--verde);
  box-shadow: 0 0 18px var(--verde);
}

.titulo {
  font-size: clamp(36px, 5vw, 72px);
  line-height: 0.96;
  letter-spacing: -3px;
  margin-bottom: 24px;
  font-weight: 900;
  position: relative;
  transition: letter-spacing 0.35s ease, transform 0.35s ease, text-shadow 0.35s ease;
}

.titulo:hover,
.intro-texto-grande:hover,
.hero h1:hover {
  letter-spacing: -1px;
  transform: translateX(4px);
  text-shadow: 0 0 34px rgba(140, 255, 79, 0.18);
}

.titulo span,
.gradiente {
  background: linear-gradient(90deg, var(--ciano), var(--verde), #ffffff, var(--ciano));
  background-size: 300% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: tituloGradiente 5s ease infinite;
}

@keyframes tituloGradiente {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.titulo::after,
.intro-texto-grande::after {
  content: "";
  display: block;
  width: 0;
  height: 6px;
  margin-top: 18px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--ciano), var(--verde));
  transition: width 0.55s ease;
}

.titulo.ativo::after,
.intro-texto-grande.ativo::after,
.titulo:hover::after,
.intro-texto-grande:hover::after {
  width: 130px;
}

.texto {
  color: var(--cinza);
  font-size: 18px;
  max-width: 760px;
}

.secao-clara {
  background: var(--claro);
  color: var(--texto-escuro);
}

.secao-clara .texto {
  color: var(--cinza-escuro);
}

.secao-clara .tag {
  color: #0f6f4f;
  background: rgba(16, 214, 196, 0.12);
  border-color: rgba(16, 214, 196, 0.24);
}

.secao-clara .tag::before {
  background: var(--ciano);
  box-shadow: 0 0 18px var(--ciano);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 24px;
  border-radius: 999px;
  font-weight: 800;
  transition: 0.3s ease;
  border: none;
  font-size: 15px;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  left: -120%;
  width: 80%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.48), transparent);
  transform: skewX(-18deg);
  transition: 0.65s ease;
}

.btn:hover::before {
  left: 140%;
}

.btn-principal {
  background: var(--verde);
  color: #07100b;
  box-shadow: 0 18px 45px rgba(140, 255, 79, 0.22);
}

.btn-principal:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 65px rgba(140, 255, 79, 0.32);
}

.btn-secundario {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.btn-secundario:hover {
  background: #ffffff;
  color: #050706;
  transform: translateY(-4px);
}

.btn-escuro {
  background: #050706;
  color: #ffffff;
}

.btn-escuro:hover {
  background: var(--verde);
  color: #07100b;
  transform: translateY(-4px);
}

header {
  position: fixed;
  top: 16px;
  left: 0;
  width: 100%;
  z-index: 1000;
  pointer-events: none;
}

.menu {
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(5, 7, 6, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
  border-radius: 999px;
  padding: 0 18px 0 24px;
  pointer-events: all;
}

.logo img {
  width: 205px;
}

nav ul {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
}

nav a {
  color: #d7dfdc;
  font-size: 14px;
  font-weight: 700;
  transition: 0.25s ease;
}

nav a:hover {
  color: var(--verde);
}

.menu-mobile {
  display: none;
  font-size: 30px;
  color: #ffffff;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 135px;
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 18%, rgba(16, 214, 196, 0.25), transparent 28%),
    radial-gradient(circle at 90% 30%, rgba(140, 255, 79, 0.18), transparent 30%),
    linear-gradient(180deg, #050706 0%, #08110f 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 44px 44px;
  opacity: 0.35;
}

.hero-conteudo {
  position: relative;
  z-index: 2;
}

.hero-topo {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 40px;
  align-items: end;
  margin-bottom: 26px;
}

.hero h1 {
  font-size: clamp(58px, 10.5vw, 156px);
  line-height: 0.78;
  letter-spacing: -8px;
  text-transform: uppercase;
  font-weight: 900;
  max-width: 1100px;
  position: relative;
  transition: letter-spacing 0.35s ease, transform 0.35s ease, text-shadow 0.35s ease;
}

.hero h1 span {
  display: block;
  color: var(--verde);
  text-shadow: 0 0 38px rgba(140, 255, 79, 0.24);
  background: linear-gradient(90deg, var(--verde), var(--ciano), #ffffff, var(--verde));
  background-size: 300% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: tituloGradiente 5s ease infinite, brilhoTitulo 2.8s ease-in-out infinite;
}

@keyframes brilhoTitulo {
  0%, 100% { filter: drop-shadow(0 0 10px rgba(140, 255, 79, 0.14)); }
  50% { filter: drop-shadow(0 0 28px rgba(16, 214, 196, 0.35)); }
}

.hero-resumo {
  color: #dce7e3;
  font-size: 18px;
  padding: 22px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
}

.hero-botoes {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.hero-showcase {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 24px;
  align-items: stretch;
  margin-top: 38px;
}

.hero-card-grande {
  min-height: 360px;
  border-radius: 34px;
  overflow: hidden;
  position: relative;
  background:
    linear-gradient(135deg, rgba(16, 214, 196, 0.35), rgba(140, 255, 79, 0.20)),
    radial-gradient(circle at 20% 20%, rgba(255,255,255,0.18), transparent 24%),
    radial-gradient(circle at 85% 55%, rgba(16, 214, 196, 0.20), transparent 28%),
    linear-gradient(135deg, #0b1110, #10221c);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.hero-card-grande::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 7, 6, 0.82), rgba(5, 7, 6, 0.15)),
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: auto, 42px 42px, 42px 42px;
}

.hero-card-info {
  position: absolute;
  z-index: 2;
  left: 28px;
  bottom: 28px;
  max-width: 430px;
}

.hero-card-info h2 {
  font-size: 34px;
  line-height: 1;
  margin-bottom: 12px;
}

.hero-card-info p {
  color: #e8f6ef;
}

.hero-side {
  display: grid;
  gap: 24px;
}

.metricas {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.metrica {
  min-height: 158px;
  border-radius: 30px;
  padding: 24px;
  background: var(--verde);
  color: #07100b;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.metrica strong {
  font-size: 42px;
  line-height: 1;
  letter-spacing: -2px;
}

.metrica span {
  font-weight: 800;
  font-size: 14px;
}

.code-card {
  border-radius: 30px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-family: Consolas, monospace;
  color: #eafff3;
  min-height: 178px;
}

.code-card div {
  margin-bottom: 9px;
}

.ciano { color: var(--ciano); }
.verde { color: var(--verde); }
.cinza { color: #93a19c; }

.marquee {
  overflow: hidden;
  background: var(--verde);
  color: #07100b;
  padding: 22px 0;
  white-space: nowrap;
  font-size: clamp(28px, 5vw, 64px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -2px;
}

.marquee-track {
  display: inline-block;
  animation: marquee 22s linear infinite;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.intro-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 50px;
  align-items: start;
}

.intro-texto-grande {
  font-size: clamp(30px, 4.2vw, 62px);
  line-height: 1.02;
  letter-spacing: -3px;
  font-weight: 900;
  position: relative;
  transition: letter-spacing 0.35s ease, transform 0.35s ease, text-shadow 0.35s ease;
}

.intro-box {
  background: #ffffff;
  border-radius: 34px;
  padding: 34px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
}

.intro-box p {
  color: var(--cinza-escuro);
  font-size: 18px;
  margin-bottom: 20px;
}

.servicos-topo,
.projetos-topo,
.processo-topo {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: end;
  margin-bottom: 42px;
}

.servicos-topo .texto,
.projetos-topo .texto,
.processo-topo .texto {
  max-width: 480px;
}

.grid-servicos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.servico-card {
  border-radius: 34px;
  padding: 30px;
  min-height: 300px;
  background: #ffffff;
  color: var(--texto-escuro);
  border: 1px solid rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: 0.35s ease;
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
}

.servico-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--x, 50%) var(--y, 50%), rgba(140, 255, 79, 0.32), transparent 34%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.servico-card:hover::before {
  opacity: 1;
}

.servico-card::after {
  content: "↗";
  position: absolute;
  right: 24px;
  top: 24px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #f2f4ef;
  font-size: 22px;
  transition: 0.35s ease;
}

.servico-card:hover {
  transform: translateY(-8px);
  background: #07100b;
  color: #ffffff;
}

.servico-card:hover::after {
  background: var(--verde);
  color: #07100b;
  transform: rotate(45deg);
}

.servico-card h3 {
  font-size: 30px;
  line-height: 1;
  letter-spacing: -1.4px;
  max-width: 250px;
}

.servico-card p {
  color: var(--cinza-escuro);
  margin-top: 42px;
}

.servico-card:hover p {
  color: #cad7d2;
}

.numero-servico {
  color: #8a9691;
  font-weight: 900;
  margin-bottom: 28px;
}

.ia-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  align-items: stretch;
}

.ia-visual {
  border-radius: 38px;
  padding: 30px;
  min-height: 520px;
  background:
    radial-gradient(circle at 50% 35%, rgba(140, 255, 79, 0.36), transparent 26%),
    radial-gradient(circle at 20% 80%, rgba(16, 214, 196, 0.22), transparent 30%),
    #0b1110;
  border: 1px solid rgba(255, 255, 255, 0.12);
  position: relative;
  overflow: hidden;
}

.orb {
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: conic-gradient(from 180deg, var(--verde), var(--ciano), #ffffff, var(--verde));
  filter: blur(0.3px);
  position: absolute;
  right: 50px;
  top: 72px;
  animation: girar 8s linear infinite;
}

.orb::after {
  content: "";
  position: absolute;
  inset: 42px;
  border-radius: 50%;
  background: #0b1110;
}

@keyframes girar {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.ia-visual-texto {
  position: relative;
  z-index: 2;
  max-width: 360px;
  margin-top: 300px;
}

.ia-visual-texto h3 {
  font-size: 38px;
  line-height: 1;
  letter-spacing: -2px;
  margin-bottom: 12px;
}

.ia-visual-texto p {
  color: #cad7d2;
}

.ia-lista {
  display: grid;
  gap: 16px;
}

.ia-item {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 18px;
  padding: 24px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  position: relative;
  overflow: hidden;
  transition: 0.35s ease;
}

.ia-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--x, 50%) var(--y, 50%), rgba(16, 214, 196, 0.22), transparent 34%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.ia-item:hover {
  transform: translateX(8px);
  border-color: rgba(140, 255, 79, 0.35);
}

.ia-item:hover::before {
  opacity: 1;
}

.ia-item > * {
  position: relative;
  z-index: 2;
}

.ia-numero {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--verde);
  color: #07100b;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 20px;
}

.ia-item h3 {
  font-size: 24px;
  margin-bottom: 7px;
}

.ia-item p {
  color: var(--cinza);
}

.projetos-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.projeto-card {
  min-height: 390px;
  border-radius: 38px;
  padding: 28px;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #ffffff;
  color: var(--texto-escuro);
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: 0.35s ease;
  transform-style: preserve-3d;
}

.projeto-card:hover {
  transform: translateY(-8px) rotateX(1deg) rotateY(-1deg);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.16);
}

.projeto-card.escuro {
  background: #07100b;
  color: #ffffff;
}

.projeto-card::before {
  content: "";
  position: absolute;
  width: 340px;
  height: 340px;
  right: -100px;
  top: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(16, 214, 196, 0.28), rgba(140, 255, 79, 0.34));
  filter: blur(2px);
  transition: 0.45s ease;
}

.projeto-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--x, 50%) var(--y, 50%), rgba(140, 255, 79, 0.24), transparent 32%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.projeto-card:hover::before {
  transform: scale(1.18) translate(-20px, -18px);
}

.projeto-card:hover::after {
  opacity: 1;
}

.projeto-card h3,
.projeto-card p,
.projeto-card .projeto-tag {
  position: relative;
  z-index: 2;
}

.projeto-tag {
  display: inline-flex;
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--verde);
  color: #07100b;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.projeto-card h3 {
  font-size: 42px;
  line-height: 1;
  letter-spacing: -2px;
  max-width: 430px;
}

.projeto-card p {
  color: var(--cinza-escuro);
  max-width: 430px;
}

.projeto-card.escuro p {
  color: #cad7d2;
}

.processo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 36px;
  overflow: hidden;
}

.processo-item {
  min-height: 320px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.04);
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: 0.35s ease;
  position: relative;
  overflow: hidden;
}

.processo-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--x, 50%) var(--y, 50%), rgba(140, 255, 79, 0.20), transparent 34%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.processo-item:hover::before {
  opacity: 1;
}

.processo-item > * {
  position: relative;
  z-index: 2;
}

.processo-item:last-child {
  border-right: none;
}

.processo-item:hover {
  background: var(--verde);
  color: #07100b;
}

.processo-item span {
  font-size: 15px;
  color: var(--verde);
  font-weight: 900;
}

.processo-item:hover span {
  color: #07100b;
}

.processo-item h3 {
  font-size: 26px;
  line-height: 1;
  letter-spacing: -1px;
  margin-bottom: 12px;
}

.processo-item p {
  color: var(--cinza);
}

.processo-item:hover p {
  color: #223027;
}

.tech-lista {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.tech-lista span {
  padding: 14px 18px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  color: #07100b;
  font-weight: 800;
  transition: 0.3s ease;
}

.tech-lista span:hover {
  background: var(--verde);
  transform: translateY(-6px) rotate(-2deg);
  box-shadow: 0 18px 40px rgba(140, 255, 79, 0.25);
}

.cursor-bolha,
.cursor-ponto {
  position: fixed;
  top: 0;
  left: 0;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  display: none;
}

.cursor-bolha {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(140, 255, 79, 0.65);
  box-shadow: 0 0 32px rgba(16, 214, 196, 0.22);
  transition: width 0.22s ease, height 0.22s ease, border-color 0.22s ease, background 0.22s ease;
  backdrop-filter: blur(2px);
}

.cursor-ponto {
  width: 8px;
  height: 8px;
  background: var(--verde);
  box-shadow: 0 0 20px var(--verde);
}

.cursor-bolha.crescer {
  width: 78px;
  height: 78px;
  border-color: rgba(16, 214, 196, 0.75);
  background: rgba(140, 255, 79, 0.08);
}

@media (hover: hover) {
  .cursor-bolha,
  .cursor-ponto {
    display: block;
  }
}

.cta {
  padding: 110px 0;
  text-align: center;
  background:
    radial-gradient(circle at center, rgba(140, 255, 79, 0.18), transparent 35%),
    #050706;
}

.cta .titulo {
  max-width: 940px;
  margin: 0 auto 24px;
}

.cta .texto {
  margin: 0 auto 34px;
}

footer {
  padding: 34px 0;
  background: #020302;
  color: #9ba7a2;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
}

.rodape {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.revelar {
  opacity: 0;
  transform: translateY(35px);
  transition: 0.8s ease;
}

.revelar.ativo {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .menu {
    border-radius: 26px;
  }

  nav ul {
    display: none;
    position: absolute;
    top: 86px;
    left: 4%;
    width: 92%;
    padding: 24px;
    border-radius: 24px;
    background: rgba(5, 7, 6, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.12);
    flex-direction: column;
    align-items: flex-start;
  }

  nav ul.abrir {
    display: flex;
  }

  .menu-mobile {
    display: block;
  }

  .hero-topo,
  .hero-showcase,
  .intro-grid,
  .ia-grid,
  .projetos-grid {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    letter-spacing: -4px;
  }

  .servicos-topo,
  .projetos-topo,
  .processo-topo {
    flex-direction: column;
    align-items: flex-start;
  }

  .grid-servicos {
    grid-template-columns: 1fr;
  }

  .processo-grid {
    grid-template-columns: 1fr 1fr;
  }

  .processo-item:nth-child(2) {
    border-right: none;
  }
}

@media (max-width: 620px) {
  section {
    padding: 75px 0;
  }

  .logo img {
    width: 160px;
  }

  .menu {
    height: 68px;
    padding-left: 18px;
  }

  .hero {
    padding-top: 120px;
  }

  .hero h1 {
    font-size: 58px;
    letter-spacing: -3px;
  }

  .hero-card-grande {
    min-height: 420px;
  }

  .metricas,
  .processo-grid {
    grid-template-columns: 1fr;
  }

  .processo-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .processo-item:last-child {
    border-bottom: none;
  }

  .ia-item {
    grid-template-columns: 1fr;
  }

  .orb {
    right: -20px;
    top: 60px;
  }

  .titulo {
    letter-spacing: -2px;
  }
}
