@font-face{font-family:"Hanken Grotesk";src:url("assets/fonts/hanken-grotesk-400.woff2") format("woff2");font-style:normal;font-weight:100 900;font-display:swap}
@font-face{font-family:"Inter Tight";src:url("assets/fonts/inter-tight-300-italic.woff2") format("woff2");font-style:italic;font-weight:100 900;font-display:swap}
@font-face{font-family:"Playfair Display";src:url("assets/fonts/playfair-display-400-italic.woff2") format("woff2");font-style:italic;font-weight:400 900;font-display:swap}

:root {
  --fundo: #0b0b0b;
  --fundo-rodape: #0d0d0d;
  --vermelho: #f4242e;
  --vermelho-texto: #e5222c;
  --branco: #ffffff;
  --botao-claro: #f7f7f7;
  --texto-suave: #8a8a8a;
  --sans: "Hanken Grotesk", "Helvetica Neue", Arial, sans-serif;
  --display: "Inter Tight", "Helvetica Neue", Arial, sans-serif;
  --serif: "Playfair Display", Georgia, serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  min-width: 320px;
  background:
    linear-gradient(180deg, #f4242e 0, #d51f28 70px, #b91b22 150px, #8a1419 220px, #4a0a0d 300px, #1c0506 360px, var(--fundo) 420px) no-repeat top / 100% 420px,
    var(--fundo);
  color: var(--branco);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
:focus-visible { outline: 2px solid #fff; outline-offset: 3px; }

.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;
}
.skip {
  position: absolute; left: 16px; top: -60px; z-index: 10;
  padding: 10px 16px; border-radius: 999px; background: #fff; color: #111; font-weight: 600;
}
.skip:focus { top: 16px; }

/* Cabeçalho */
.topo { padding: 59px 24px 0; }
.topo__barra {
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1440px; height: 117px; margin: 0 auto;
  padding: 0 37px 0 43px;
  border: 1px solid rgba(255, 255, 255, .38);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .03), rgba(0, 0, 0, .06));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .06);
}
.topo__logo img, .rodape__logo img { width: 251px; filter: contrast(1.8); mix-blend-mode: lighten; }
.topo__entrar { display: flex; align-items: center; gap: 4px; }
.topo__entrar-texto {
  display: grid; place-items: center;
  width: 126px; height: 62px; border-radius: 999px;
  background: var(--botao-claro); color: var(--vermelho-texto);
  font-size: 20px; font-weight: 500; letter-spacing: -.01em;
}
.topo__entrar-seta {
  display: grid; place-items: center;
  width: 62px; height: 62px; border-radius: 50%;
  background: var(--botao-claro); color: var(--vermelho-texto);
}
.topo__entrar-texto, .topo__entrar-seta { transition: box-shadow .25s ease, background-color .25s ease, transform .25s ease; }
.topo__entrar:hover .topo__entrar-texto, .topo__entrar:hover .topo__entrar-seta,
.topo__entrar:focus-visible .topo__entrar-texto, .topo__entrar:focus-visible .topo__entrar-seta {
  background: #fff; box-shadow: 0 0 22px rgba(255, 255, 255, .45);
}
.topo__entrar:hover .topo__entrar-seta { transform: translateX(2px); }

/* Hero */
.hero { padding: 174px 24px 0; text-align: center; }
.hero__titulo { margin: 0; font-weight: 400; }
.hero__linha {
  display: block;
  font-family: var(--display); font-style: italic; font-weight: 300;
  font-size: 101px; line-height: 100px; letter-spacing: -.035em;
}
.hero__linha--2 { font-size: 88px; line-height: 57px; }
.hero__titulo em {
  font-family: var(--serif); font-style: italic; font-weight: 400;
  font-size: 134px; letter-spacing: -.02em;
  background: linear-gradient(90deg, #ffffff 0%, #e2dddd 40%, #b3abab 70%, #857d7d 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  padding-right: .06em; white-space: nowrap;
}
.hero__texto {
  max-width: 820px; margin: 129px auto 0;
  color: var(--texto-suave);
  font-size: 26.4px; line-height: 37px; font-weight: 400; letter-spacing: 0;
}

/* Botões */
.botoes { display: flex; justify-content: center; gap: 14px; margin-top: 62px; }
.botao {
  display: inline-grid; place-items: center;
  width: 261px; height: 81px; border-radius: 999px;
  font-size: 26px; font-weight: 500; letter-spacing: -.025em;
  transition: box-shadow .25s ease, background-color .25s ease, border-color .25s ease;
}
.botao--claro { background: var(--botao-claro); color: #111; }
.botao--escuro {
  border: 1px solid rgba(255, 255, 255, .5);
  background: radial-gradient(120% 140% at 20% 0%, #1d1d1d 0%, #050505 60%);
  color: #fff;
}
.botao--claro:hover, .botao--claro:focus-visible { background: #fff; box-shadow: 0 0 28px rgba(255, 255, 255, .35); }
.botao--escuro:hover, .botao--escuro:focus-visible { border-color: rgba(255, 255, 255, .85); box-shadow: 0 0 28px rgba(244, 36, 46, .45); }

/* Serviços */
.servicos { padding-top: 209px; }
.carrossel { position: relative; }
.cards {
  display: flex; gap: 11px;
  overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none;
  overscroll-behavior-x: contain;
}
.cards::-webkit-scrollbar { display: none; }
.cards.arrastando { scroll-snap-type: none; cursor: grabbing; }
.cards:focus-visible { outline-offset: -3px; }
.card {
  position: relative;
  flex: 0 0 calc((100% - 33px) / 4);
  scroll-snap-align: start;
  border-radius: 30px; overflow: hidden;
}
.card img { width: 100%; pointer-events: none; user-select: none; -webkit-user-drag: none; }
.carrossel__setas { display: none; justify-content: center; gap: 12px; margin-top: 24px; }
.carrossel__seta {
  display: grid; place-items: center;
  width: 52px; height: 52px; padding: 0; border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .45); background: #111; color: #fff; cursor: pointer;
  transition: box-shadow .25s ease, border-color .25s ease, opacity .25s ease;
}
.carrossel__seta:hover, .carrossel__seta:focus-visible { border-color: #fff; box-shadow: 0 0 20px rgba(244, 36, 46, .5); }
.carrossel__seta:disabled { opacity: .35; cursor: default; box-shadow: none; }
.botoes--servicos { margin-top: 113px; }

/* Rodapé */
.rodape {
  position: relative; margin-top: 112px; height: 369px; overflow: hidden;
  background:
    radial-gradient(68% 210px at 50% 100%, #ff3a44 0%, #fc3540 35%, rgba(214, 38, 46, .85) 60%, rgba(110, 20, 24, .45) 84%, rgba(13, 13, 13, 0) 100%) no-repeat bottom / 100% 220px,
    linear-gradient(0deg, #4a1518 0, #2a1112 110px, rgba(13, 13, 13, 0) 190px) no-repeat bottom / 100% 190px,
    var(--fundo-rodape);
}
.rodape__conteudo {
  position: relative; left: clamp(-64px, (1462px - 100vw) * .139, 0px);
  width: min(1334px, 100% - 48px); margin: 0 auto; padding-top: 127px;
}
.rodape__linha {
  height: 1px;
  background: repeating-linear-gradient(90deg, #5c5c5c 0 16px, transparent 16px 32px);
}
.rodape__barra {
  display: flex; align-items: center; gap: 24px;
  margin-top: 52px; padding-left: 56px;
}
.rodape__copy {
  flex: 1; margin: 0; padding-right: 30px; text-align: center;
  font-size: 17px; font-weight: 400; letter-spacing: -.005em;
}
.rodape__redes { display: flex; align-items: center; gap: 22px; }
.rodape__redes::before { content: ""; width: 1px; height: 18px; background: rgba(255, 255, 255, .8); }
.rodape__redes a, .rodape__icone { display: grid; place-items: center; color: #fff; transition: filter .25s ease, color .25s ease; }
.rodape__redes a:hover, .rodape__redes a:focus-visible { color: #ffd2d4; filter: drop-shadow(0 0 6px rgba(255, 80, 90, .9)); }

/* Animações de entrada: só com JS e sem movimento reduzido */
@media (prefers-reduced-motion: no-preference) {
  .js [data-anim] {
    opacity: 0; transform: translateY(28px);
    transition: opacity .7s ease, transform .7s cubic-bezier(.2, .7, .2, 1);
    transition-delay: calc(var(--i, 0) * 110ms);
  }
  .js .is-in [data-anim] { opacity: 1; transform: none; }
  .cards { scroll-behavior: smooth; }
}

/* Carrossel em telas menores */
@media (max-width: 1099px) {
  .cards { padding-inline: 24px; scroll-padding-inline: 24px; gap: 12px; }
  .card { flex-basis: min(46vw, 380px); border-radius: 24px; }
  .carrossel__setas { display: flex; }
  .servicos { padding-top: clamp(80px, 12vw, 160px); }
  .botoes--servicos { margin-top: 64px; }
}

@media (max-width: 1500px) {
  .rodape__barra { padding-left: 0; }
  .rodape__copy { padding-right: 0; }
}

@media (max-width: 1250px) {
  .hero { padding-top: clamp(56px, 8vw, 97px); }
  .hero__linha { font-size: clamp(38px, 7.2vw, 101px); line-height: 1.08; }
  .hero__linha--2 { line-height: 1.2; }
  .hero__titulo em { font-size: clamp(56px, 9.5vw, 134px); }
  .hero__texto { max-width: 720px; margin-top: clamp(28px, 6vw, 83px); font-size: clamp(17px, 2.1vw, 26px); line-height: 1.45; }
  .botoes { margin-top: clamp(32px, 5vw, 72px); }
  .botao { width: clamp(160px, 21vw, 261px); height: clamp(54px, 6.5vw, 81px); font-size: clamp(17px, 2.1vw, 26px); }
}

@media (max-width: 760px) {
  .topo { padding: 20px 16px 0; }
  .topo__barra { height: 66px; padding: 0 11px 0 20px; }
  .topo__logo img, .rodape__logo img { width: 130px; }
  .topo__entrar-texto { width: 80px; height: 44px; font-size: 16px; }
  .topo__entrar-seta { width: 44px; height: 44px; }
  .topo__entrar-seta svg { width: 20px; height: 20px; }
  .hero { padding-inline: 16px; }
  .hero__linha { font-size: clamp(33px, 9.4vw, 52px); }
  .hero__titulo em { font-size: clamp(50px, 14vw, 78px); }
  .hero__linha--2 { line-height: 1.3; }
  .botoes { flex-direction: column; align-items: center; gap: 12px; }
  .botao { width: min(100%, 300px); height: 58px; font-size: 18px; }
  .cards { padding-inline: 16px; scroll-padding-inline: 16px; }
  .card { flex-basis: min(78vw, 340px); }
  .rodape { margin-top: 56px; }
  .rodape__conteudo { width: calc(100% - 32px); padding-top: 48px; }
  .rodape__copy { font-size: 15px; }
}

@media (max-width: 1000px) {
  .rodape { height: auto; padding-bottom: 150px; }
  .rodape__conteudo { left: 0; }
  .rodape__barra { flex-direction: column; gap: 22px; margin-top: 36px; }
  .rodape__logo img { width: 180px; }
  .rodape__copy { order: 3; }
  .rodape__redes::before { display: none; }
}
@media (max-width: 760px) {
  .rodape__logo img { width: 150px; }
}
