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

:root {
  --verde: #00ff88;
  --verde2: #00bf68;
  --preto: #040506;
  --cinza: #10151b;
  --texto: #f5f5f5;
  --muted: #b8c3c9;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: var(--preto);
  color: var(--texto);
  line-height: 1.6;
}

.container {
  width: min(1120px, 92%);
  margin: auto;
}

.topo {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(4, 5, 6, 0.94);
  border-bottom: 1px solid rgba(0, 255, 136, 0.25);
  backdrop-filter: blur(10px);
}

.menu {
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.marca {
  display: flex;
  align-items: center;
  gap: 12px;
}

.icone-logo {
  width: 52px;
  height: 52px;
  border: 2px solid var(--verde);
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 32px;
  font-weight: 900;
  color: var(--verde);
  box-shadow: 0 0 22px rgba(0, 255, 136, 0.6);
}

.marca h2 {
  letter-spacing: 3px;
  font-size: 26px;
}

.marca p {
  color: var(--muted);
  font-size: 13px;
}

nav a {
  color: var(--texto);
  text-decoration: none;
  margin-left: 24px;
  font-weight: 700;
}

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

.hero {
  min-height: 720px;
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at 20% 20%, rgba(0, 255, 136, .25), transparent 35%),
    radial-gradient(circle at 80% 40%, rgba(0, 255, 136, .10), transparent 30%),
    linear-gradient(135deg, #040506, #07130f 55%, #000);
}

.hero-conteudo {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 38px;
  align-items: center;
}

.etiqueta {
  display: inline-block;
  color: var(--verde);
  border: 1px solid rgba(0,255,136,.4);
  padding: 8px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 900;
}

.texto-hero h1 {
  font-size: clamp(40px, 6vw, 74px);
  line-height: 1.05;
  margin-bottom: 20px;
}

.texto-hero strong {
  color: var(--verde);
  text-shadow: 0 0 24px rgba(0,255,136,.55);
}

.texto-hero p {
  font-size: 20px;
  color: var(--muted);
  max-width: 650px;
  margin-bottom: 30px;
}

.botoes {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  display: inline-block;
  text-decoration: none;
  border-radius: 14px;
  padding: 15px 24px;
  font-weight: 900;
  transition: .25s;
}

.btn:hover {
  transform: translateY(-3px);
}

.btn-verde {
  background: var(--verde);
  color: #00190d;
  box-shadow: 0 0 24px rgba(0,255,136,.45);
}

.btn-borda {
  border: 1px solid var(--verde);
  color: var(--verde);
}

.btn-preto {
  background: #050608;
  color: var(--verde);
}

.painel {
  background: linear-gradient(180deg, rgba(16,21,27,.95), rgba(4,5,6,.95));
  border: 1px solid rgba(0,255,136,.35);
  border-radius: 28px;
  padding: 34px;
  box-shadow: 0 0 45px rgba(0,255,136,.18);
}

.painel h3 {
  color: var(--verde);
  font-size: 34px;
  margin-bottom: 10px;
}

.painel p {
  color: var(--muted);
  margin-bottom: 18px;
}

.painel ul {
  list-style: none;
}

.painel li {
  padding: 8px 0;
}

.secao {
  padding: 86px 0;
}

.titulo {
  font-size: 40px;
  color: var(--verde);
  text-shadow: 0 0 18px rgba(0,255,136,.45);
  margin-bottom: 10px;
}

.subtitulo {
  color: var(--muted);
  font-size: 18px;
  margin-bottom: 32px;
}

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

.card {
  background: #0c1015;
  border: 1px solid rgba(0,255,136,.16);
  border-radius: 22px;
  padding: 26px;
  transition: .25s;
}

.card:hover {
  transform: translateY(-6px);
  border-color: rgba(0,255,136,.65);
  box-shadow: 0 0 30px rgba(0,255,136,.18);
}

.card span {
  font-size: 40px;
}

.card h3 {
  margin: 14px 0 8px;
}

.card p {
  color: var(--muted);
}

.sobre {
  background: #080b0f;
}

.sobre-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
}

.sobre p {
  color: var(--muted);
  margin-bottom: 16px;
  font-size: 18px;
}

.destaques {
  display: grid;
  gap: 18px;
}

.destaques div {
  background: #0f141b;
  border: 1px solid rgba(0,255,136,.16);
  border-radius: 18px;
  padding: 22px;
}

.destaques strong {
  color: var(--verde);
}

.chamada {
  padding: 72px 0;
  text-align: center;
  background: linear-gradient(90deg, var(--verde), var(--verde2));
  color: #00190d;
}

.chamada h2 {
  font-size: 44px;
}

.chamada p {
  font-size: 20px;
  margin: 8px 0 22px;
}

.contato-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
}

.contato p {
  color: var(--muted);
  font-size: 18px;
  margin: 12px 0;
}

form {
  background: #0c1015;
  border: 1px solid rgba(0,255,136,.20);
  border-radius: 22px;
  padding: 28px;
}

input, textarea, button {
  width: 100%;
  padding: 15px;
  margin-top: 13px;
  border-radius: 12px;
  border: none;
  font-size: 16px;
}

input, textarea {
  background: #151b22;
  color: white;
  border: 1px solid rgba(255,255,255,.08);
}

textarea {
  min-height: 120px;
  resize: vertical;
}


button {
  background: var(--verde);
  color: #00190d;
  font-weight: 900;
  cursor: pointer;
}

footer {
  background: #030405;
  text-align: center;
  padding: 28px;
  color: var(--muted);
}

.whatsapp-fixo {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: #25d366;
  color: #00190d;
  text-decoration: none;
  padding: 14px 18px;
  border-radius: 40px;
  font-weight: 900;
  box-shadow: 0 0 24px rgba(37,211,102,.5);
}

@media (max-width: 850px) {
  nav {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 70px 0;
  }

  .hero-conteudo,
  .sobre-grid,
  .contato-grid {
    grid-template-columns: 1fr;
  }

  .cards {
    grid-template-columns: 1fr;
  }
}
.logo-topo {
    height: 75px;
    width: auto;
    display: block;
}

.banner-em-breve {
    width: 100%;
    background: #00ff66;
    border-top: 2px solid #00ff66;
    border-bottom: 2px solid #00ff66;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0,255,102,0.5);
}

.banner-conteudo {
    color: #000;
    font-size: 22px;
    font-weight: 900;
    white-space: nowrap;
    padding: 15px 0;
    animation: moverBanner 20s linear infinite;
}

@keyframes moverBanner {
    from {
        transform: translateX(100%);
    }
    to {
        transform: translateX(-100%);
    }
  }

 .pc-gamer {
    text-align: center;
    padding: 10px;
}

.pc-gamer h3 {
    color: #ffffff;
    font-size: 32px;
    margin-bottom: 15px;
}

.pc-gamer p {
    color: #00ff66;
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 20px;
}

.pc-gamer-img {
    width: 100%;
    max-width: 700px;
    display: block;
    margin: 0 auto;
    filter: drop-shadow(0 0 40px #00ff66);
}

.ferramentas-ia{
    background:#00e676;
    padding:60px 20px;
    text-align:center;
}

.ferramentas-ia h2{
    font-size:32px;
    color:#000;
    margin-bottom:20px;
    text-align:center;
}
    .ferramentas-ia h2{
    font-size:32px;
    color:#000;
    margin-bottom:20px;
    text-align:center;
}

.ferramentas-ia p{
    color:#000;
    font-size:18px;
    margin-bottom:30px;
}

.ferramentas-ia p{
    color:#000;
    font-size:18px;
    margin-bottom:30px;
}

.cards-ia{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:15px;
    flex-wrap:nowrap;
}

.cards-ia a{
    background:#000;
    color:#00e676;
    padding:15px 20px;
    border-radius:8px;
    text-decoration:none;
    font-weight:bold;
    display:inline-block;
}

.cards-ia a:hover{
    transform:scale(1.05);
}

/* AUMENTAR LOGOTIPO E ALTURA DO CABEÇALHO */
header {
  min-height: 115px;
}

header .container {
  min-height: 115px;
  display: flex;
  align-items: center;
}

header img[src*="logo-kbyte"] {
  width: 110px;
  height: auto;
  max-height: 100px;
  object-fit: contain;
}


/* AJUSTE FINAL DA FAIXA VERDE */
.banner-em-breve {
  width: 100%;
  height: 70px !important;
  min-height: 70px !important;
  padding: 0 !important;
  margin: 0;
  display: flex !important;
  align-items: center !important;
  overflow: hidden;
  box-sizing: border-box;
}

.banner-conteudo {
  width: max-content;
  height: auto !important;
  min-height: 0 !important;
  padding: 0 !important;
  margin: 0;
  position: static !important;
  top: auto !important;
  translate: none !important;
  white-space: nowrap;
  line-height: 1.2;
  font-size: 22px;
  font-weight: 900;
  flex-shrink: 0;
}

/* AJUSTE FINAL DO RODAPÉ */
footer p {
  font-size: 12px !important;
  color: rgba(255, 255, 255, 0.55) !important;
  line-height: 1.35;
  font-weight: 400;
}
