/* --- Estilo Principal do Rodapé --- */
.footer {
  position: fixed;
  bottom: 0;
  width: 100%;
  background: #000a15;
  border-top: 1px solid #333;
  display: flex;
  justify-content: space-around;
  align-items: center; /* Centraliza verticalmente todos os itens */
  padding: 10px 0;
  z-index: 10;
  height: 70px; /* Define altura fixa para consistência */
}

.footer a {
  font-size: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center; /* Centraliza o conteúdo */
  text-decoration: none;
  color: #888;
  transition: color 0.3s;
  min-width: 60px; /* Largura mínima igual para todos */
  height: 50px; /* Altura fixa para todos */
  position: relative;
}

.footer a:hover {
  color: #fff;
}

.footer a.active {
  color: #007fdb;
}

/* Ícones padronizados */
.footer a i {
  font-size: 20px; /* Tamanho igual para todos os ícones */
  margin-bottom: 4px;
  transition: all 0.3s ease;
}

/* Texto padronizado */
.footer a span {
  font-size: 12px;
  text-align: center;
  line-height: 1;
}

/* 🔹 Destaque do botão Depositar (mantendo proporcional) */
.footer a.deposito-btn {
  color: #888 !important;
}

/* Círculo azul para o ícone do depósito */
.footer a.deposito-btn i {
  background: #007fdb;
  color: #fff !important;
  border-radius: 50%;
  width: 45px; /* Tamanho proporcional */
  height: 45px; /* Tamanho proporcional */
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  box-shadow: 0 4px 15px rgba(0, 127, 219, 0.3);
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.footer a.deposito-btn:hover i {
  background: #0095ff;
  transform: scale(1.1);
}

.footer a.deposito-btn:hover {
  color: #fff !important;
}

/* Texto do depósito alinhado com os outros */
.footer a.deposito-btn span {
  position: absolute; /* Remove o span do fluxo normal */
  bottom: -2px;       /* Alinha com a base dos outros textos */
  left: 0;            /* Centraliza horizontalmente */
  right: 0;           /* Centraliza horizontalmente */
  font-size: 12px;    /* Garante o mesmo tamanho de fonte */
  color: inherit;     /* Herda a cor do link pai */
}

/* Responsividade */
@media (max-width: 480px) {
  .footer {
    height: 50px;
    padding: 8px 0;
  }
  
  .footer a {
    font-size: 13px;
    min-width: 50px;
    height: 30px;
  }
  
  .footer a i {
    font-size: 18px;
    margin-bottom: 3px;
  }
  
  .footer a span {
    font-size: 11px;
  }
  
  .footer a.deposito-btn i {
    width: 45px;
    height: 45px;
    font-size: 16px;
  }
  
  .footer a.deposito-btn span {
    font-size: 11px;
  }
}

@media (max-width: 360px) {
  .footer a {
    min-width: 45px;
  }
  
  .footer a span {
    font-size: 10px;
  }
  
  .footer a.deposito-btn span {
    font-size: 10px;
    top: -6px; /* Mantém alinhamento em telas muito pequenas */
  }
}