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

body {
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  color: #e0e0e0;
  background-color: #0f111a;
}

/* === NAVBAR === */
.navbar {
  background: linear-gradient(90deg, #10162f, #0d0c1f);
  border-bottom: 1px solid #1f2333;
}
.navbar-brand {
  font-weight: 700;
  font-size: 1.2rem;
  color: #00eaff !important;
}

/* === HERO === */
.hero {
  background: radial-gradient(circle at center, #1e1f36 0%, #121321 100%);
  color: #fff;
  height: 420px;
  display: flex;
  align-items: center;
  text-align: center;
}
.hero h1 {
  font-size: 2.8rem;
  background: linear-gradient(90deg, #0ff, #6ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
h2 {
  background: linear-gradient(90deg, #0ff, #6ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero p {
  font-size: 1.1rem;
  color: #b0b3c2;
}

/* === BOTÕES === */
.btn-gestagi,
.btn-dominio {
  background: linear-gradient(135deg, #00f6ff, #007bff);
  color: #fff;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  transition: 0.3s ease;
  box-shadow: 0 0 0 transparent;
}
.btn-gestagi:hover,
.btn-dominio:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 255, 255, 0.2);
}

/* === SEÇÃO CONSULTA DOMÍNIO === */
.dominio-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #11131f, #171c2e);
}
.dominio-section h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #00eaff;
}
.dominio-section p {
  font-size: 1rem;
  color: #888;
}
.dominio-form {
  max-width: 700px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 2rem;
}
.dominio-input-container {
  display: flex;
  align-items: center;
  background: #1d1f2b;
  border-radius: 50px;
  padding: 14px 22px;
  box-shadow: inset 0 0 5px rgba(0, 255, 255, 0.1);
  flex-grow: 1;
  min-width: 300px;
  border: 1px solid #2a2e45;
}
.dominio-input-container i {
  margin-right: 12px;
  color: #00eaff;
}
.dominio-input-container input {
  border: none;
  outline: none;
  flex: 1;
  font-size: 1rem;
  background: transparent;
  color: #fff;
}
.tech-scroll {
  gap: 1rem;
  scroll-snap-type: x mandatory;
  scrollbar-color: #00eaff transparent;
  padding-bottom: 1rem;
  justify-content: center;
}

.tech-item {
  flex: 0 0 auto;
  width: 110px;
  background: #1a1c2c;
  padding: 1.2rem;
  border-radius: 10px;
  color: #eee;
  scroll-snap-align: start;
  transition: transform 0.3s ease;
  border: 1px solid #2a2e45;
}

.tech-item:hover {
  transform: translateY(-5px);
  background: #23263a;
}

.tech-item i {
  width: 36px;
  height: 36px;
  margin-bottom: 0.6rem;
  color: #00eaff;
}
.tech-item p {
  margin: 0;
  font-size: 0.95rem;
}

/* === PLANOS === */
#planos {
  background-color: #0f111a;
  padding: 80px 0;
}
#planos h2 {
  font-size: 2rem;
  font-weight: bold;
  color: #00eaff;
}
.plano-card {
  background: #1a1c2c;
  border-radius: 12px;
  box-shadow: 0 6px 14px rgba(0,0,0,0.3);
  padding: 2rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.plano-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.4);
}
.plano-card.destaque {
  border: 2px solid #00eaff;
}
.plano-card h4 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #00eaff;
}
.plano-card .preco {
  font-size: 1.8rem;
  color: #6feaff;
  font-weight: bold;
}
.plano-card ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}
.plano-card ul li {
  margin-bottom: 0.4rem;
  font-size: 0.95rem;
  color: #ccc;
}

/* === RODAPÉ === */
footer {
  background: #0d0e17;
  color: #aaa;
  padding: 1.5rem 0;
  font-size: 0.9rem;
}
footer p {
  margin: 0;
}

/* === RESPONSIVO === */
@media (max-width: 768px) {
  .hero {
    height: auto;
    padding: 60px 0;
  }
  .hero h1 {
    font-size: 2rem;
  }
  .dominio-form {
    flex-direction: column;
    gap: 14px;
  }
  .btn-dominio {
    width: 100%;
  }
}



.footer-tech {
  background: linear-gradient(135deg, #0c0f1c, #111728);
  border-top: 1px solid #222;
}
.footer-tech h5 {
  font-weight: 600;
  color: #00eaff;
}
.footer-tech p {
  margin-bottom: 0.4rem;
  color: #ccc;
  font-size: 0.95rem;
}
.footer-tech i {
  color: #00eaff;
  width: 18px;
  height: 18px;
  vertical-align: middle;
}
