body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  background: #0a192f;
  color: #fff;
  font-family: 'Segoe UI', Arial, sans-serif;
  position: relative;
  z-index: 1;
  overflow-x: hidden;
}

/* Fundo com logo */
.bg-logo {
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: url('imagen/logo 2.jpg') no-repeat center center;
  background-size: cover;
  opacity: 0.08;
  z-index: 0;
  pointer-events: none;
  filter: blur(1.5px) grayscale(10%) drop-shadow(0 0 60px #00d8ff55);
}

/* Navbar */
.navbar {
  width: 100%;
  background: rgba(10,25,47,0.98);
  position: fixed;
  top: 0; left: 0;
  z-index: 10;
  box-shadow: 0 2px 16px #00d8ff22;
}
.nav-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  padding: 0 32px;
  height: 70px;
  justify-content: space-between;
}
.logo-nav {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2.5px solid #00d8ff;
  background: #fff;
  margin-right: 16px;
  box-shadow: 0 2px 12px #00d8ff33;
}
.brand {
  font-size: 1.3rem;
  font-weight: bold;
  color: #00d8ff;
  letter-spacing: 1px;
  margin-right: auto;
}
.nav-content ul {
  list-style: none;
  display: flex;
  gap: 28px;
  margin: 0;
  padding: 0;
}
.nav-content a {
  color: #b2eaff;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  transition: color 0.2s;
}
.nav-content a:hover {
  color: #00ffb8;
}

/* Hero */
.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 70vh;
  padding-top: 90px;
  background: linear-gradient(120deg, #02101f 60%, #00d8ff22 100%);
  position: relative;
  z-index: 2;
}
.hero-content {
  max-width: 600px;
  z-index: 2;
}
.hero h1 {
  font-size: 2.8rem;
  margin: 0 0 18px 0;
  background: linear-gradient(90deg, #00d8ff, #007cf0, #00ffb8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: bold;
  letter-spacing: 1.5px;
}
.hero p {
  font-size: 1.25rem;
  color: #b2eaff;
  margin-bottom: 32px;
}
.hero-btn {
  font-size: 1.15rem;
  padding: 18px 48px;
  border-radius: 32px;
  margin-top: 10px;
}
.logo-hero {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  object-fit: cover;
  border: 6px solid #00d8ff;
  background: #fff;
  box-shadow: 0 8px 48px #00d8ff33;
  margin-left: 60px;
  display: block;
}
@media (max-width: 900px) {
  .hero {
    flex-direction: column;
    text-align: center;
    padding-top: 100px;
  }
  .logo-hero {
    margin: 32px auto 0 auto;
  }
}

/* Cards de serviços */
.servicos {
  max-width: 1200px;
  margin: 60px auto 0 auto;
  padding: 0 16px;
  z-index: 2;
  position: relative;
}
.servicos h2 {
  text-align: center;
  font-size: 2.1rem;
  color: #00d8ff;
  margin-bottom: 36px;
}
.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}
.card {
  background: rgba(17,34,64,0.98);
  border-radius: 18px;
  box-shadow: 0 4px 32px #00d8ff11;
  padding: 36px 28px 28px 28px;
  max-width: 260px;
  min-width: 220px;
  flex: 1 1 220px;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
  border-bottom: 3px solid #00d8ff44;
}
.card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 8px 40px #00d8ff33;
  border-bottom: 3px solid #00ffb8;
}
.icon {
  font-size: 2.5rem;
  margin-bottom: 18px;
  display: block;
}
.card h3 {
  color: #00d8ff;
  margin: 0 0 10px 0;
  font-size: 1.25rem;
}
.card p {
  color: #b2eaff;
  font-size: 1rem;
}

/* Diferenciais */
.diferenciais {
  max-width: 900px;
  margin: 60px auto 0 auto;
  background: rgba(0,216,255,0.07);
  border-radius: 18px;
  padding: 36px 28px;
  box-shadow: 0 4px 32px #00d8ff11;
  z-index: 2;
  position: relative;
}
.diferenciais h2 {
  color: #00d8ff;
  margin-bottom: 24px;
  font-size: 2rem;
}
.diferenciais ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.diferenciais li {
  font-size: 1.1rem;
  color: #b2eaff;
  margin-bottom: 16px;
  padding-left: 0;
  position: relative;
}
.diferenciais li:before {
  content: "✓";
  color: #00ffb8;
  font-weight: bold;
  margin-right: 10px;
}

/* Depoimentos */
.depoimentos {
  max-width: 900px;
  margin: 60px auto 0 auto;
  padding: 36px 28px;
  background: rgba(17,34,64,0.98);
  border-radius: 18px;
  box-shadow: 0 4px 32px #00d8ff11;
  z-index: 2;
  position: relative;
}
.depoimentos h2 {
  color: #00d8ff;
  margin-bottom: 24px;
  font-size: 2rem;
  text-align: center;
}
.depoimentos-list {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
}
.depoimentos blockquote {
  background: rgba(0,216,255,0.07);
  border-left: 4px solid #00d8ff;
  border-radius: 12px;
  padding: 24px 20px 16px 20px;
  color: #b2eaff;
  font-size: 1.05rem;
  max-width: 340px;
  margin: 0;
  box-shadow: 0 2px 12px #00d8ff11;
}
.depoimentos footer {
  color: #00ffb8;
  font-size: 0.95rem;
  margin-top: 10px;
}

/* Contato */
.contato {
  max-width: 700px;
  margin: 60px auto 0 auto;
  background: rgba(0,216,255,0.07);
  border-radius: 18px;
  padding: 36px 28px;
  box-shadow: 0 4px 32px #00d8ff11;
  z-index: 2;
  position: relative;
  text-align: center;
}
.contato h2 {
  color: #00d8ff;
  margin-bottom: 24px;
  font-size: 2rem;
}
.form-contato {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 18px;
}
.form-contato input,
.form-contato textarea {
  background: #112240;
  border: 1.5px solid #00d8ff33;
  border-radius: 8px;
  padding: 14px;
  color: #fff;
  font-size: 1rem;
  resize: none;
  outline: none;
  transition: border 0.2s;
}
.form-contato input:focus,
.form-contato textarea:focus {
  border: 1.5px solid #00d8ff;
}
.form-contato textarea {
  min-height: 90px;
  max-height: 200px;
}
.form-contato button {
  align-self: flex-end;
}
.contato-info {
  color: #b2eaff;
  font-size: 1rem;
}
.contato-info a {
  color: #00d8ff;
  text-decoration: underline;
}

/* Botão CTA */
.cta-btn {
  display: inline-block;
  margin-top: 12px;
  padding: 16px 40px;
  background: linear-gradient(90deg, #00d8ff, #00ffb8);
  color: #02101f;
  font-weight: bold;
  border: none;
  border-radius: 30px;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background 0.3s, color 0.3s, box-shadow 0.3s;
  text-decoration: none;
  box-shadow: 0 2px 12px rgba(0,216,255,0.10);
}
.cta-btn:hover {
  background: linear-gradient(90deg, #007cf0, #00d8ff);
  color: #fff;
  box-shadow: 0 4px 24px rgba(0,216,255,0.18);
}

/* Footer */
footer {
  text-align: center;
  padding: 28px 0 18px 0;
  color: #b2eaff;
  background: rgba(2,16,31,0.96);
  margin-top: 60px;
  font-size: 1rem;
  position: relative;
  z-index: 2;
  border-top: 2px solid #00d8ff33;
}

/* Responsivo */
@media (max-width: 900px) {
  .cards {
    flex-direction: column;
    align-items: center;
  }
  .nav-content {
    flex-direction: column;
    gap: 10px;
    height: auto;
    padding: 12px 12px;
  }
  .logo-nav {
    margin-bottom: 8px;
  }
}
@media (max-width: 600px) {
  .hero h1 {
    font-size: 1.5rem;
  }
  .hero-content {
    max-width: 98vw;
  }
  .logo-hero {
    width: 120px;
    height: 120px;
  }
  .servicos, .diferenciais, .depoimentos, .contato {
    padding: 18px 4px;
  }
  .card {
    padding: 24px 10px 18px 10px;
    min-width: 0;
    max-width: 98vw;
  }
}
