/* ------------------------------ */
/* CONFIGURAÇÕES GERAIS */
/* ------------------------------ */
html, body {
  height: 100%;
}

.page {
  min-height: 100vh;       /* ocupa a tela inteira */
  display: flex;
  flex-direction: column;  /* empilha header, main, footer */
}

main {
  flex: 1;                 /* empurra o footer para o final */
}


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

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

h1, h2, h3 {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 1px;
  margin: 0; /* se quiser padronizar */
}


a {
  text-decoration: none;
  color: inherit;
}


/* cores coloridas nos textos, use >span */
.neon {
  color: #00e5ff; /* azul neon */
  font-weight: 700;
}

/* icones */


.social-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 22px;
  margin-top: 30px;
}

.icon {
  color: #ffffff;          /* ícones brancos */
  transition: 0.25s ease;
}

.icon svg {
  width: 26px;
  height: 26px;
  stroke: currentColor;
  transition: 0.25s ease;
}

.icon:hover {
  color: #00e5ff;          /* vira neon azul */
  filter: drop-shadow(0 0 6px #00e5ff) drop-shadow(0 0 12px #00e5ff);
  transform: translateY(-3px);
}




/* ------------------------------ */
/* HEADER */
/* ------------------------------ */

.header {
  width: 100%;
  padding: 20px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(10px);
  z-index: 1000;
}

.logo {
  font-size: 28px;
  font-weight: bold;
  letter-spacing: 2px;
}

.nav a {
  margin: 0 15px;
  font-size: 15px;
  opacity: 0.8;
  transition: 0.3s;
}

.nav a:hover {
  opacity: 1;
  color: #00e5ff;
}

.btn-contratar {
  padding: 10px 20px;
  border: 1px solid #00e5ff;
  color: #00e5ff;
  border-radius: 4px;
  transition: 0.3s;
}

.btn-contratar:hover {
  background: #00e5ff;
  color: #0d0d0d;
}

/* ------------------------------ */
/* HERO (HOME) */
/* ------------------------------ */

.hero {
  display: flex;
  justify-content: center;      /* Centraliza horizontalmente */
  align-items: center;          /* Centraliza verticalmente */
  gap: 0px;                    /* Espaço entre texto e imagem */
  padding: 180px 60px 120px;
  text-align: center;           /* Centraliza o texto */
  flex-wrap: wrap;              /* Mantém responsivo */
}


.hero-text h1 {
  font-size: 100px;
  line-height: 1.1;
}

.hero-text p {
  margin: 20px 0;
  font-size: 18px;
  opacity: 0.8;
}

/* Baloes de imagens */

.baloes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 60px;
  padding: 0;
}


.balao {
  width: 100%;
  height: 100%;
  background: #111;
  border-radius: 0;          /* sem bordas arredondadas */
  overflow: hidden;
  text-align: center;
  text-decoration: none;
  color: #fff;
  transition: 0.3s ease;
  border: none;              /* remove bordas */
}

.balao img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

.balao h3 {
  padding: 20px 0;
  font-size: 22px;
  letter-spacing: 1px;
}

.balao:hover {
  box-shadow: inset 0 0 20px #00e5ff55, 0 0 25px #00e5ff55;
  transform: scale(1.02);
  color: #00e5ff;
}

@media (max-width: 900px) {
  .baloes {
     margin-top: 40px;
    grid-template-columns: 1fr;
  }

  .balao img {
    height: 200px;
  }
}



/* Footer */

.footer {
  width: 100%;
  padding: 18px 0;
  text-align: center;
  font-size: 14px;
  color: #ffffff;
  background: #0d0d0d;
  border-top: 1px solid #00e5ff;
  box-shadow: 0 -2px 12px #00e5ff55;
}
