:root {
  --fundo: #0b0b0c;
  --superficie: #151517;
  --superficie-2: #1d1d20;
  --borda: #2a2a2e;
  --texto: #f2f2f3;
  --texto-2: #a9a9b0;
  --vermelho: #fc1608;
  --vermelho-claro: #ff4133;
  color-scheme: dark;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--fundo);
  color: var(--texto);
  font-family: "Segoe UI", system-ui, -apple-system, Roboto, Arial, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
h1, h2, h3 { line-height: 1.2; margin: 0 0 .5em; }
h2 { font-size: clamp(1.6rem, 4vw, 2.2rem); }
p { margin: 0 0 1em; }
.conteudo { width: min(1100px, 100% - 32px); margin-inline: auto; }
.vermelho { color: var(--vermelho); }
.sub { color: var(--texto-2); font-size: 1.08rem; max-width: 640px; }
.nota { color: var(--texto-2); font-size: .88rem; margin: .8em 0 0; }

/* topo */
.topo {
  position: sticky; top: 0; z-index: 10;
  background: rgba(11, 11, 12, .88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--borda);
}
.topo-linha { display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: 64px; }
.marca { display: flex; align-items: center; gap: 10px; text-decoration: none; font-size: 1.15rem; letter-spacing: .06em; }
.marca strong { color: var(--vermelho); }
.marca-icone { width: 54px; height: auto; }
.menu { display: flex; align-items: center; gap: 22px; }
.menu a:not(.botao) { text-decoration: none; color: var(--texto-2); font-size: .95rem; }
.menu a:not(.botao):hover { color: var(--texto); }

/* botoes */
.botao {
  display: inline-block;
  background: var(--vermelho);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  padding: 12px 22px;
  border-radius: 10px;
  border: 2px solid var(--vermelho);
  transition: background .15s, transform .15s;
}
.botao:hover { background: var(--vermelho-claro); border-color: var(--vermelho-claro); transform: translateY(-1px); }
.botao.contorno { background: transparent; color: var(--texto); border-color: var(--borda); }
.botao.contorno:hover { border-color: var(--vermelho); color: #fff; }
.botao.pequeno { padding: 8px 14px; font-size: .9rem; }
.botao.grande { padding: 15px 28px; font-size: 1.05rem; }

/* hero */
.hero {
  padding: clamp(64px, 12vw, 130px) 0 clamp(56px, 9vw, 100px);
  background:
    radial-gradient(900px 420px at 85% -10%, rgba(252, 22, 8, .22), transparent 60%),
    radial-gradient(600px 300px at 0% 110%, rgba(252, 22, 8, .10), transparent 60%);
  border-bottom: 1px solid var(--borda);
}
.etiqueta {
  display: inline-block;
  color: var(--vermelho);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .82rem;
  font-weight: 700;
  margin-bottom: 14px;
}
.hero h1 { font-size: clamp(2rem, 5vw, 3.1rem); max-width: 860px; }
.hero-grade { display: grid; grid-template-columns: 1fr; gap: 28px; align-items: center; }
.hero-logo-caixa { justify-self: center; width: min(420px, 80vw); }
.hero-logo { width: 100%; height: auto; display: block; filter: drop-shadow(0 10px 40px rgba(252, 22, 8, .25)); }
@media (min-width: 900px) {
  .hero-grade { grid-template-columns: 1.25fr 1fr; }
  .hero-logo-caixa { order: 2; width: 100%; max-width: 440px; }
}
.acoes { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }

/* secoes */
.secao { padding: clamp(56px, 9vw, 96px) 0; }
.secao.escura { background: var(--superficie); border-block: 1px solid var(--borda); }

.cartoes { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 16px; margin-top: 28px; }
.cartao {
  background: var(--superficie);
  border: 1px solid var(--borda);
  border-radius: 14px;
  padding: 24px;
  transition: border-color .15s;
}
.cartao:hover { border-color: var(--vermelho); }
.cartao p { color: var(--texto-2); margin: 0; }
.cartao-icone {
  width: 46px; height: 46px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: rgba(252, 22, 8, .12);
  margin-bottom: 16px;
}
.cartao-icone svg { width: 26px; height: 26px; fill: none; stroke: var(--vermelho); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

.passos { list-style: none; padding: 0; margin: 28px 0 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 16px; }
.passos li { display: flex; gap: 14px; background: var(--fundo); border: 1px solid var(--borda); border-radius: 14px; padding: 22px; }
.passos p { color: var(--texto-2); margin: 0; }
.numero {
  flex: none;
  width: 36px; height: 36px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--vermelho);
  font-weight: 700;
}

.downloads { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 16px; margin-top: 28px; }
.download { background: var(--superficie); border: 1px solid var(--borda); border-radius: 14px; padding: 28px; }
.download.principal { border-color: var(--vermelho); box-shadow: 0 0 0 1px var(--vermelho), 0 12px 40px rgba(252, 22, 8, .12); }
.download > p:not(.nota) { color: var(--texto-2); }

.aviso-windows {
  margin-top: 24px;
  background: var(--superficie);
  border: 1px solid var(--borda);
  border-radius: 12px;
  padding: 16px 20px;
}
.aviso-windows summary { cursor: pointer; font-weight: 600; }
.aviso-windows p { color: var(--texto-2); margin: 12px 0 0; }

.contato { text-align: center; }
.contato .sub { margin-inline: auto; }

.rodape { padding: 32px 0; border-top: 1px solid var(--borda); text-align: center; }
.rodape p { margin: 0; }

@media (max-width: 640px) {
  .menu a:not(.botao) { display: none; }
  .acoes .botao { width: 100%; text-align: center; }
  .download .botao { width: 100%; text-align: center; }
}

/* marcas atendidas */
.marcas { border-bottom: 1px solid var(--borda); background: var(--superficie); }
.marcas-linha { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 18px 44px; padding: 26px 0; }
.marcas-titulo { color: var(--texto-2); text-transform: uppercase; letter-spacing: .14em; font-size: .8rem; font-weight: 700; }
.marcas img { height: 54px; width: auto; }
.marcas .marca-gm { height: 56px; }

/* novidades */
.novidades { display: grid; gap: 20px; margin-top: 28px; }
.novidade {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  background: var(--fundo);
  border: 1px solid var(--borda);
  border-radius: 16px;
  overflow: hidden;
}
.novidade-imagem { display: block; background: #000; }
.novidade-imagem img { display: block; width: 100%; height: 100%; max-height: 560px; object-fit: contain; }
.novidade-texto { padding: 26px; align-self: center; }
.novidade-texto h3 { font-size: 1.6rem; }
.novidade-texto > p:not(.etiqueta) { color: var(--texto-2); }
.lista { margin: 0 0 22px; padding: 0; list-style: none; }
.lista li { padding-left: 26px; position: relative; margin: 6px 0; }
.lista li::before { content: ""; position: absolute; left: 4px; top: .55em; width: 10px; height: 10px; border-radius: 50%; background: var(--vermelho); }
.marcas-aviso { font-size: .78rem; margin-top: .6em; }
@media (min-width: 800px) {
  .novidade { grid-template-columns: minmax(260px, 380px) 1fr; }
}
