* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background-color: #000;
  color: #fff;
  scroll-behavior: smooth;
}

/* ===== HEADER ===== */
/* ===== HEADER ===== */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 10%;
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(6px);
  z-index: 1000;
}

header .logo {
  height: 55px;
}

nav {
  display: flex;
  gap: 25px;
}

nav a {
  color: #00ff88;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

nav a:hover {
  color: #fff;
}

/* ===== BOTÃO MENU (HAMBURGUER) ===== */
#menu-btn {
  display: none;
  width: 35px;
  cursor: pointer;
}

/* ===== RESPONSIVIDADE ===== */
@media (max-width: 768px) {
  #menu-btn {
    display: block; /* mostra o ícone do menu */
  }

  nav {
    position: absolute;
    top: 70px;
    right: 10%;
    background-color: #0a0a0a;
    flex-direction: column;
    align-items: center;
    width: 180px;
    padding: 20px;
    border: 1px solid rgba(0, 255, 136, 0.2);
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 255, 136, 0.2);
    display: none; /* escondido por padrão */
  }

  nav.show {
    display: flex; /* aparece quando o JS adiciona a classe */
  }

  nav a {
    margin: 10px 0;
  }
}



/* ===== HERO ===== */
.hero {
  text-align: center;
  padding: 100px 20px;
}

.hero h1 {
  font-size: 3rem;
  color: #00ff88;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.2rem;
  color: #ccc;
  margin-bottom: 40px;
}

/* ===== BOTÕES ===== */
.cta-btn {
  background-color: #00ff88;
  color: #000;
  padding: 15px 30px;
  border: none;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: 0.3s;
}

.cta-btn:hover {
  background-color: #00cc6a;
  transform: scale(1.05);
}

/* ===== SEÇÕES ===== */
section {
  padding: 80px 10%;
}

h2 {
  text-align: center;
  font-size: 2rem;
  color: #00ff88;
  margin-bottom: 40px;
}

/* ===== SERVIÇOS ===== */
#servicos {
  text-align: center;
  padding: 80px 10%;
  background-color: #000;
}

#servicos h2 {
  font-size: 2em;
  color: #00ff88;
  margin-bottom: 50px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  justify-items: center;
}

.card {
  background: #0a0a0a;
  border: 1px solid rgba(0, 255, 136, 0.2);
  border-radius: 16px;
  padding: 30px;
  width: 100%;
  max-width: 320px;
  color: #fff;
  box-shadow: 0 0 15px rgba(0, 255, 136, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 25px rgba(0, 255, 136, 0.3);
}

.card h3 {
  color: #00ff88;
  font-size: 1.3em;
  margin-bottom: 10px;
}

.card p {
  font-size: 0.95em;
  line-height: 1.5;
}

.price {
  margin-top: 15px;
  color: #00ff88;
  font-weight: bold;
}

@media (max-width: 1024px) {
  .services {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 700px) {
  .services {
    grid-template-columns: 1fr;
  }
}

/* ===== LINHA DO TEMPO ===== */
#como-funciona {
  text-align: center;
}

#como-funciona h2 {
  margin-bottom: 60px;
}

.timeline {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 25px;
}

.timeline-step {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  align-items: center;
  max-width: 220px;
}

.timeline-step .number {
  font-size: 1.7rem;
  color: black;
  display: block;
  font-weight: bold;
}

.timeline-step p {
  font-size: 0.95rem;
  color: #ccc;
  line-height: 1.4;
}

.line {
  width: 60px;
  height: 2px;
  background-color: #00ff88;
  border-radius: 2px;
}

.linhaTempo {
  height: 50px;
  width: 50px;
  background-color: #00ff88;
  color: black;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 10px;
}

/* ===== FOOTER ===== */
footer {
  background-color: #0a0a0a;
  text-align: center;
  padding: 40px 10%;
  color: #666;
}

footer a {
  color: #00ff88;
  text-decoration: none;
}

#iconsContato {
  margin-bottom: 20px;
}

.iconContato {
  height: 30px;
  margin-left: 20px;
  margin-right: 2px;
  cursor: pointer;
}
#email {
  height: 27px;
}

/* ===== ELEMENTOS EXTRAS ===== */
#divFraseInicial {
  display: flex;
  justify-content: center;
  align-items: center;
}

#foguetinho {
  height: 60px;
  margin-left: 10px;
}

/* ===== RESPONSIVIDADE ===== */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.2rem;
  }

  .timeline {
    flex-direction: column;
  }

  .line {
    width: 2px;
    height: 40px;
  }
}
