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

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: #090d12;
  color: #f4f4f4;
  line-height: 1.6;
}

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

.topo {
  background: rgba(8, 12, 18, 0.98);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  position: sticky;
  top: 0;
  z-index: 999;
}

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

/* LOGO PEQUENA SOMENTE NA BARRA */
.logo {
  width: 170px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
  flex-shrink: 0;
}

.logo a {
  width: 170px;
  height: 70px;
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo img {
  width: 170px;
  height: 70px;
  object-fit: contain;
  display: block;
}

nav a {
  color: #ddd;
  text-decoration: none;
  margin-left: 24px;
  font-size: 15px;
}

nav a:hover {
  color: #00aaff;
}

.hero {
  min-height: 88vh;
  display: flex;
  align-items: center;
  background:
    linear-gradient(120deg, rgba(0,170,255,0.20), rgba(0,0,0,0.85)),
    radial-gradient(circle at top right, rgba(0,170,255,0.25), transparent 35%);
}

/* GARANTIA: NÃO EXISTE LOGO GIGANTE NA HERO */
.hero img,
.logo-hero {
  display: none !important;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 40px;
  align-items: center;
}

.tag {
  color: #00aaff;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 13px;
  margin-bottom: 12px;
}

h1 {
  font-size: clamp(36px, 5vw, 62px);
  line-height: 1.1;
  margin-bottom: 22px;
}

h2 {
  font-size: clamp(28px, 3vw, 42px);
  margin-bottom: 20px;
}

.texto,
.descricao {
  color: #cfd6df;
  font-size: 18px;
  max-width: 850px;
  margin-bottom: 18px;
}

.botoes {
  display: flex;
  gap: 15px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.btn {
  padding: 14px 22px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700;
}

.principal {
  background: #00aaff;
  color: #061018;
}

.secundario {
  border: 1px solid #00aaff;
  color: #00aaff;
}

.card-destaque {
  background: linear-gradient(180deg, #121a24, #0c1118);
  border: 1px solid rgba(0,170,255,0.35);
  border-radius: 22px;
  padding: 35px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
}

.card-destaque h2 {
  color: #00aaff;
}

.card-destaque ul {
  margin-top: 18px;
  padding-left: 20px;
  color: #dce8f2;
}

.secao {
  padding: 85px 0;
  background: #0c1118;
}

.escura {
  background: #070b10;
}

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

.card {
  background: #101722;
  border: 1px solid rgba(255,255,255,0.08);
  padding: 28px;
  border-radius: 18px;
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-6px);
  border-color: rgba(0,170,255,0.5);
}

.card h3 {
  color: #00aaff;
  margin-bottom: 12px;
  font-size: 22px;
}

.card p {
  color: #cbd5df;
}

.estrutura {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 35px;
  align-items: center;
}

.lista {
  background: #101722;
  border-radius: 18px;
  padding: 28px;
  border: 1px solid rgba(0,170,255,0.25);
}

.lista p {
  margin-bottom: 12px;
  color: #dce8f2;
}

.contato {
  background: linear-gradient(120deg, #07111b, #0c1118);
}

.contato-box {
  margin-top: 25px;
  background: #101722;
  border-left: 5px solid #00aaff;
  padding: 25px;
  border-radius: 14px;
  max-width: 600px;
}

footer {
  text-align: center;
  padding: 25px;
  background: #05080c;
  color: #8f9aaa;
}

@media (max-width: 850px) {
  .hero-grid,
  .estrutura {
    grid-template-columns: 1fr;
  }

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

  .nav {
    height: auto;
    padding: 14px 0;
    flex-direction: column;
    gap: 12px;
  }

  .logo,
  .logo a {
    width: 130px;
    height: 55px;
  }

  .logo img {
    width: 130px;
    height: 55px;
  }

  nav a {
    margin: 0 8px;
    font-size: 14px;
  }

  .hero {
    padding: 70px 0;
  }
}
