/* ========================================================================= */
/* ========== 0. BOX-SIZING GLOBAL ========== */
/* ========================================================================= */
*, *::before, *::after {
  box-sizing: border-box;
}

/* ========================================================================= */
/* ========== 1. ESTILO GLOBAL E ELEMENTOS BÁSICOS ========== */
/* ========================================================================= */
body {
  font-family: 'Roboto Mono', monospace;
  background: linear-gradient(135deg, #1e1e2f, #121212);
  color: #c0c0c0;
  /*padding-top: 70px; /* Compensar a altura do navbar fixo */
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #00d9ff;
  text-transform: uppercase;
  letter-spacing: 2px;
}

a {
  color: #00d9ff;
  text-decoration: none;
}

a:hover {
  color: #00ffaa;
  text-decoration: underline;
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: bold;
}

.navbar-nav .nav-link {
  font-size: 1rem;
  text-transform: uppercase;
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 1030;
  padding: 1px 15px;
  background-color: rgba(13, 110, 253, 0.8); /* Mantém a transparência */
}


footer {
  font-size: 0.875rem;
}

/* ========================================================================= */
/* ========== 2. PÁGINA EMPRESA ========== */
/* ========================================================================= */
.empresa-page .row-empresa {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 20px;
}

.empresa-page .col-md-6 {
  flex: 1;
  max-width: 48%;
  text-align: justify;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.empresa-page .col-md-6:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.empresa-page img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
}

.empresa-page figure {
  margin: 0;
  text-align: center;
}

.empresa-page figcaption {
  color: #6c757d;
  font-size: 0.7rem;
  margin-top: 10px;
}

.empresa-page .filosofia-row .col-md-4 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 10px;
}

/* ========================================================================= */
/* ========== 3. PÁGINA CASES DE SUCESSO ========== */
/* ========================================================================= */
.cases-page .row-cases {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.card-case {
  width: 48%;
  border: 1px solid #00d9ff;
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background-color: rgba(18, 18, 18, 0.4);
  padding: 15px;
  display: flex;
  flex-direction: column;
  text-align: center;
}

.card-case:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.card-case-header {
  font-weight: bold;
  text-transform: uppercase;
  font-size: 1rem;
  margin-bottom: 10px;
}

.card-case-header i {
  font-size: 2rem;
  color: #00d9ff;
  margin-bottom: 10px;
}

.card-case-body {
  font-size: 0.9rem;
  line-height: 1.5;
  color: #c0c0c0;
  text-align: justify;
}

/* ========================================================================= */
/* ========== 4. PÁGINA EQUIPE ========== */
/* ========================================================================= */
.equipe-page .row-equipe {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.card-equipe {
  width: 48%;
  border: 1px solid #00d9ff;
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background-color: rgba(18, 18, 18, 0.4);
  padding: 15px;
  display: flex;
  flex-direction: column;
  text-align: center;
}

.card-equipe:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.card-equipe-header {
  font-weight: bold;
  text-transform: uppercase;
  font-size: 1rem;
  margin-bottom: 10px;
}

.card-equipe-header i {
  font-size: 2rem;
  color: #00d9ff;
  margin-bottom: 10px;
}

.card-equipe-body {
  font-size: 0.9rem;
  line-height: 1.5;
  color: #c0c0c0;
  text-align: justify;
}

/* ========================================================================= */
/* ========== 5. PÁGINA SERVIÇOS ========== */
/* ========================================================================= */
.servicos-page .row-servicos {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.card-servico {
  width: 30%;
  border: 1px solid #00d9ff;
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background-color: rgba(18, 18, 18, 0.6); /* 40% de transparência */
  padding: 15px;
  display: flex;
  flex-direction: column;
  text-align: center;
}

.card-servico:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.card-servico-header {
  font-weight: bold;
  text-transform: uppercase;
  font-size: 1rem;
  margin-bottom: 10px;
}

.card-servico-header i {
  font-size: 2rem;
  color: #00d9ff;
  margin-bottom: 10px;
}

.card-servico-body ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.card-servico-body ul li {
  font-size: 0.9rem;
  line-height: 1.5;
  color: #c0c0c0;
  margin-bottom: 8px;
}

/* ========================================================================= */
/* ========== 6. VÍDEO DE FUNDO E CONTEÚDO CENTRALIZADO ========== */
/* ========================================================================= */
.video-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1; /* Atrás de todo o conteúdo */
  overflow: hidden;
}

.video-background video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5);
}

.video-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: -1;
}

.card-transparente {
  background: rgba(0, 0, 0, 0.4); 
  padding: 20px;
  margin: 20px auto;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

/* ========================================================================= */
/* ========== 7. TELA DE CARREGAMENTO ========== */
/* ========================================================================= */
#loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8); /* Fundo semi-transparente */
  z-index: 9999; /* Acima de todo o conteúdo */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #00d9ff;
  transition: opacity 0.5s ease;
  opacity: 1;
}

#loading-screen.hidden {
  opacity: 0;
  pointer-events: none;
}

#loading-screen p {
  margin-top: 20px;
  font-size: 1.2rem;
}

/* ========================================================================= */
/* ========== 8. RODAPÉ FIXO COM TRANSPARÊNCIA ========== */
/* ========================================================================= */
.footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
  text-align: center;
  padding: 10px 0;
  z-index: 1030;
  font-size: 0.875rem;
  box-sizing: border-box;
}

/* Compensa a altura do footer (60px) */
body {
  padding-bottom: 60px;
}

@media (max-width: 768px) {
  body {
    padding-bottom: 70px; /* Ajustar conforme a altura do footer */
  }
}

/* ========================================================================= */
/* ========== 9. MEDIA QUERIES (RESPONSIVIDADE) ========== */
/* ========================================================================= */
@media (max-width: 768px) {
  .row {
    flex-direction: column;
  }

  .empresa-page .col-md-6,
  .cases-page .card-case,
  .servicos-page .card-servico {
    max-width: 100%;
    margin-bottom: 20px;
  }

  .empresa-page .row-empresa,
  .cases-page .row-cases,
  .servicos-page .row-servicos {
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
  }

  .equipe-page .card-equipe {
    width: 100%;
  }

  .servicos-page .card-servico {
    width: 100%;
  }

  /* Ajustes de responsividade para home-content */
  .home-content {
    min-height: auto; /* Em telas menores, permitir scroll natural */
  }

  .home-content .content h1 {
    font-size: 2rem;
  }

  .home-content .content p.lead {
    font-size: 1.2rem;
  }

  .home-content .content a.btn {
    font-size: 1rem;
  }

  .home-content .row.mt-5 .col-md-4 {
    max-width: 100%;
    margin-bottom: 20px;
  }

  .cases-page .card-case,
  .servicos-page .card-servico {
    width: 100%;
    margin: 10px auto;
    max-width: none;
  }
}

/* ========================================================================= */
/* ========== 10. CLASSES EXTRAS ========== */
/* ========================================================================= */
/* Inputs transparentes */
.transparent-input {
  background-color: rgba(0, 0, 0, 0.2) !important;
  color: #fff !important;
  border: 1px solid #fff !important; 
}

.transparent-input::placeholder {
  color: #ccc;
}

.transparent-input:focus {
  outline: none;
  border-color: #00d9ff;
  box-shadow: 0 0 5px rgba(0, 217, 255, 0.5);
}


/* Animação de fade in e fade out */
@keyframes fadeInOut {
  0% { opacity: 0; transform: translateY(-20px); }
  10% { opacity: 1; transform: translateY(0); }
  90% { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(-20px); }
}


/* ========================================================================= */
/* ========== Contato - Estilos Exclusivos ========== */
/* ========================================================================= */

/* Card personalizado para a página de contato */
.contato-card {
  background: rgba(0, 0, 0, 0.8); 
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
  color: #c0c0c0;
  text-align: center;
}

/* Títulos exclusivos da página de contato */
.contato-card h3 {
  color: #00d9ff;
  font-weight: bold;
  text-transform: uppercase;
}

/* Links exclusivos */
.contato-link {
  color: #c0c0c0;
  text-decoration: none;
}

.contato-link:hover {
  text-decoration: underline;
  color: #00ffaa;
}

/* Botão WhatsApp exclusivo */
.btn-contato-wpp {
  background-color: #25d366;
  border: none;
  font-weight: bold;
}

.btn-contato-wpp:hover {
  background-color: #1ebc5a;
}

/* Notas informativas */
.contato-note {
  color: #ffa500;
  font-size: 0.85rem;
  font-style: italic;
}

/* Alinhamento e responsividade */
@media (max-width: 768px) {
  .contato-page .contato-card {
    margin-bottom: 20px;
  }
}



/* Canvas de Space Travel */
/* Canvas de Space Travel */
#space-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1; /* Fica atrás de todo o conteúdo */
  background: black;
  display: block;
}

/* Tela de Carregamento */
#loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: black;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 1s ease, visibility 1s ease;
}

#loading-screen.hidden {
  opacity: 0;
  visibility: hidden;
}

/* Conteúdo Centralizado */
.home-content .content {
  position: relative;
  z-index: 1;
  color: white;
  padding-top: 15%;
}

/* Botão de Serviços */
.btn-outline-light {
  border-color: white;
  color: white;
  transition: background-color 0.3s, color 0.3s;
}

.btn-outline-light:hover {
  background-color: white;
  color: black;
}

/* Seções de Destaque */
.row.mt-5 .col-md-4 {
  margin-bottom: 20px;
}

.text-center h3 {
  margin-bottom: 15px;
}





/* Estilos para a tabela de Mineração */
.mineracao-table {
  background-color: #f8f9fa; /* Fundo claro para a tabela */
  border-radius: 8px; /* Bordas arredondadas */
  overflow: hidden; /* Para garantir que as bordas arredondadas funcionem */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Sombra suave */
}

.mineracao-table th, .mineracao-table td {
  text-align: center; /* Centralizar texto */
  vertical-align: middle; /* Centralizar verticalmente */
  padding: 12px 8px; /* Espaçamento interno */
}

.mineracao-table tbody tr:nth-child(even) {
  background-color: #e9ecef; /* Cor de fundo alternada para linhas pares */
}

.mineracao-table tbody tr:hover {
  background-color: #dee2e6; /* Destaque ao passar o mouse */
}

.mineracao-table th {
  font-size: 1rem; /* Tamanho da fonte */
  color: #ffffff; /* Cor do texto */
}

.mineracao-table thead.table-dark th {
  background-color: #343a40; /* Fundo escuro para o cabeçalho */
  color: #ffffff; /* Texto branco no cabeçalho */
}

/* Destaque para a coluna de Comissão */
.mineracao-table th:nth-child(8),
.mineracao-table td:nth-child(8) {
  background-color: #ffc107; /* Fundo amarelo para comissão */
  color: #000000; /* Texto preto */
}

/* Destaque para a coluna de Comissão */
.mineracao-table th:nth-child(7),
.mineracao-table td:nth-child(7) {
  background-color: #6aff07; /* Fundo amarelo para comissão */
  color: #000000; /* Texto preto */
}

/* Destaque para a coluna de Comissão */
.mineracao-table th:nth-child(3),
.mineracao-table td:nth-child(3) {
  background-color: #a0ff07; /* Fundo amarelo para comissão */
  color: #000000; /* Texto preto */
}

/* Destaque para a coluna de Comissão */
.mineracao-table th:nth-child(5),
.mineracao-table td:nth-child(5) {
  background-color: #c7ae65; /* Fundo amarelo para comissão */
  color: #000000; /* Texto preto */
}

/* Destaque para a coluna de Comissão */
.mineracao-table th:nth-child(12),
.mineracao-table td:nth-child(12) {
  background-color: #07c5ff; /* Fundo amarelo para comissão */
  color: #000000; /* Texto preto */
}

/* Destaque para a coluna de Comissão */
.mineracao-table th:nth-child(4),
.mineracao-table td:nth-child(4) {
  background-color: #07c5ff; /* Fundo amarelo para comissão */
  color: #000000; /* Texto preto */
}

@media (max-width: 768px) {
  .mineracao-table th, .mineracao-table td {
    padding: 8px 4px; /* Reduzir o padding em telas menores */
    font-size: 0.9rem; /* Reduzir o tamanho da fonte */
  }
}
