.bg-cabecalho{
  color: #fff;
  background: radial-gradient(circle at top, #000000, #00111a);
}

.mv{
  background: linear-gradient(145deg, #000 0%, #3a3838 100%);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.747);
  border-radius: 12px;
  color: #fff;
  transition: all 0.3s ease;
}
.mv:hover{
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
  transform: scale(1.03);
}
.or{
  width: 90%;
  background: linear-gradient(145deg, #000 0%, #3a3838 100%);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.747);
  border-radius: 12px;
  color: #fff;
  transition: all 0.3s ease;
}
.or:hover{
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
  transform: scale(1.01);
}

@keyframes pulseSn {
  0%{
    box-shadow: 0 0 0 0 #11ac4c79;
  }
  70%{
    box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
  }
  100%{
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}
.btOr{
  background: linear-gradient(90deg, rgb(0, 0, 0) 0%, #0a741b 100%);
  animation: pulseSn 2s infinite;
  font-size: 1.1rem;
  font-weight: 600;
  padding: 10px 20px;
  text-decoration: none;
  border: none;
  border-radius: 12px;
  color: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
}
.btOr:hover{
  transform: scale(1.03);
  background: linear-gradient(90deg, rgb(34, 122, 50) 0%, #000000 100%);
}
.btOr:active{
    transform: translateY(1px) scale(0.98);
  box-shadow: inset 0 4px 8px rgba(0, 0, 0, 0.678);
}

/* Section - Rodapé */
.bg-rodape{
  color: #fff;
  background: radial-gradient(circle at top, #000000, #00111a);
}
.btnVoltar{
    background: radial-gradient(circle at top, #000000, #00111a);
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 12px 28px;
    text-decoration: none;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 12px rgba(255, 255, 255, 0.25);
}
.btnVoltar:hover{
    background: radial-gradient(circle at top, #053149, #000);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 18px rgba(11, 39, 71, 0.589);
}
.btnVoltar:active{
  transform: translateY(1px) scale(0.98);
  box-shadow: inset 0 4px 8px rgba(0, 0, 0, 0.3);
}