body {
  font-family: "Inter", sans-serif;
  background: radial-gradient(circle at center, #0a1a2f 0%, #02050b 70%);
  color: #fff;
}

/* Navbar */
.custom-navbar {
  background: rgba(2, 5, 11, 0.85);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.navbar-brand strong {
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: 1px;
}

/* Hero */
.hero {
  min-height: 70vh;
  padding-top: 70px;
}

.hero-logo {
  width: 760px;
  max-width: 90%;
  height: auto;
   margin-bottom: 2rem;
  filter: drop-shadow(0 10px 30px rgba(0, 180, 255, 0.35));
}

@media (min-width: 768px) {
  .hero-logo {
    width: 360px;
  }
}

@media (min-width: 1200px) {
  .hero-logo {
    width: 420px;
  }
}

.hero-title {
  font-family: "Space Grotesk", sans-serif;
  font-size: 3rem;
  font-weight: 700;
}

.hero-title span {
  color: #1e90ff;
}

.hero-text {
  max-width: 720px;
  margin: auto;
  font-size: 1.1rem;
  color: #b6c2d9;
}

/* Botões */
.btn-primary {
  background: linear-gradient(135deg, #1e90ff, #00c6ff);
  border: none;
}

.btn-outline-info {
  border-color: #00c6ff;
  color: #00c6ff;
}

.btn-outline-info:hover {
  background-color: #00c6ff;
  color: #000;
}

/* Responsivo */
@media (max-width: 768px) {
  .hero-logo {
    width: 160px;
  }

  .hero-title {
    font-size: 2.2rem;
  }
}
/* Serviços */
.services {
  background: radial-gradient(circle at center, #0a1a2f 0%, #02050b 70%);
}

.services-title {
  font-family: "Space Grotesk", sans-serif;
  font-size: 2.6rem;
  font-weight: 700;
}

.services-title span {
  color: #1e90ff;
}

.services-subtitle {
  max-width: 640px;
  margin: 1rem auto 0;
  color: #9fb3d1;
  font-size: 1.05rem;
}

/* Card */
.service-card {
  background: linear-gradient(145deg, #0b1220, #050914);
  border-radius: 18px;
  padding: 30px;
  height: 100%;
  transition: all 0.3s ease;
  border: 1px solid rgba(255,255,255,0.05);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

/* Ícone */
.icon-box {
  width: 54px;
  height: 54px;
  background: linear-gradient(135deg, #1e90ff, #00c6ff);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 20px;
  color: #000;
  font-weight: bold;
}

.service-card h5 {
  font-weight: 600;
  margin-bottom: 10px;
}

.service-card p {
  color: #9fb3d1;
  font-size: 0.95rem;
}

:root {
  --bg: #050b16;
  --card: #0b1220;
  --blue: #1da1ff;
  --text: #cbd5e1;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
}

.section {
  padding: 80px 10%;
  text-align: center;
}

.section h2 {
  font-size: 36px;
  color: #fff;
}

.section h2 span {
  color: var(--blue);
}

.subtitle {
  margin-top: 10px;
  color: #94a3b8;
}

.grid {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

.card {
  background: linear-gradient(180deg, #0b1220, #070d18);
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 0 0 transparent;
  transition: all .3s ease;
}

.card:hover {
  box-shadow: 0 0 25px rgba(29,161,255,.25);
  transform: translateY(-6px);
}

.card h3 {
  color: #fff;
  margin-bottom: 10px;
}

.about-content {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  align-items: center;
  text-align: left;
}

.about ul {
  list-style: none;
  padding: 0;
}

.about li {
  margin: 10px 0;
}

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

.stats div {
  background: var(--card);
  padding: 25px;
  border-radius: 16px;
  text-align: center;
}

.stats strong {
  font-size: 32px;
  color: var(--blue);
}

.stats span {
  display: block;
  margin-top: 5px;
  color: #94a3b8;
}

.contact-cards {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
}

.footer {
  border-top: 1px solid #111827;
  padding: 20px;
  text-align: center;
  color: #64748b;
}
