@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@500;700&display=swap');

body {
  margin: 0;
  padding: 0;
  font-family: 'Orbitron', sans-serif;
  background: #1a1d1f url('img/assiplan_tools.png') no-repeat center center fixed;
  background-size: contain;
  color: #00ff66;
  overflow-x: hidden;
}

.overlay {
  position: fixed;
  inset: 0;
  background-color: transparent;
  z-index: -1;
  pointer-events: none;
  transition: background-color 0.5s ease;
}

.overlay.initial-dark {
  background-color: rgba(0, 0, 0, 0.45);
}

.overlay.dark {
  background-color: rgba(0, 0, 0, 0.65);
}

.hero, .content, .menu {
  position: relative;
  z-index: 1;
}

.hero {
  text-align: center;
  padding: 120px 20px 60px;
}

.hero h1.typing {
  font-size: 3rem;
  margin-bottom: 10px;
  color: #00ff66;
  white-space: nowrap;
  overflow: hidden;
  border-right: 2px solid #00ff66;
}

.subtexto {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: #ccc;
}

.btn-saiba-mais {
  display: inline-block;
  background-color: #00ff66;
  color: #1a1d1f;
  padding: 12px 24px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 4px;
  transition: background 0.3s ease;
}
.btn-saiba-mais:hover {
  background-color: #00cc55;
}

.content {
  padding-bottom: 80px;
}

/* === AQUI: garante cada seção com altura mínima de 100vh === */
.section {
  padding: 80px 20px 40px;
  max-width: 1000px;
  margin: 0 auto;
  color: #00ff66;
  min-height: 100vh;
}

.menu {
  position: fixed;
  bottom: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  z-index: 1;
}

.menu a {
  flex: 1;
  text-align: center;
  padding: 12px 6px;
  font-size: 0.9rem;
  font-weight: bold;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
  border-top: 4px solid transparent;
  white-space: nowrap;
}

.menu a.active {
  border-top: 5px solid white;
  filter: brightness(1.2);
  color: black;
  box-shadow: 0 0 8px white;
}

.separator {
  width: 2px;
  background: black;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 40px;
  justify-content: center;
}

.card {
  background: rgba(0, 0, 0, 0.7);
  border: 1px solid #00ff66;
  padding: 20px;
  width: 280px;
  border-radius: 8px;
  box-shadow: 0 0 12px rgba(0,255,102,0.4);
  transition: transform 0.3s ease-out;
}
.card:hover {
  transform: translateY(-5px);
}

.menu a.dark-quemsomos    { background-color: #cc871f !important; color: black !important; }
.menu a.dark-projetos     { background-color: #b03025 !important; color: black !important; }
.menu a.dark-boaspraticas { background-color: #d4b326 !important; color: black !important; }
.menu a.dark-design       { background-color: #00366b !important; color: black !important; }
.menu a.dark-tecnologia   { background-color: #50a7d4 !important; color: black !important; }
.menu a.dark-premiacoes   { background-color: #cf4829 !important; color: black !important; }
.menu a.dark-blog         { background-color: #d5d5d5 !important; color: black !important; }

h1.typing::after {
  content: '|';
  animation: blink 1s infinite;
}

@keyframes blink {
  0%,100% { opacity:1; }
  50%    { opacity:0; }
}

@media screen and (max-width: 768px) {
  .menu a { font-size: 0.75rem; padding:10px 4px; }
  .card   { width:100%; }
  .hero h1.typing { font-size:2rem; }
  .subtexto { font-size:1rem; }
}
