@import url("./keyframes.css");

body,
html {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  scroll-behavior: smooth;
  background-color: #000;
}
header {
  background-color: #000;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;

  & img {
    max-width: 50%;
    height: auto;
    opacity: 0;
    transform: translateY(-20px);
    animation: fadeIn 2s ease-out forwards;
  }
}

.container,
.row,
.col,
.col-md-4,
.col-12 {
  overflow: hidden; /* Impede que o conteúdo ultrapasse a largura da tela */
}

.section-full {
  min-height: 100%; /* Exatamente 100% da altura da tela */
}

section {
  padding: 100px 20px;
  text-align: center;
}
.section-light {
  background-color: #f8f9fa;
  color: #333;
}
.section-dark {
  background-color: #212529;
  color: #fff;
}

.btn-custom {
  margin-top: 20px;
  padding: 10px 20px;
  font-size: 1.2rem;
  background-color: #dc3545;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.3s ease;

  &:hover {
    background-color: #c82333;
  }
}

.font-branca {
  color: white;
}

.font-verde {
  color: #00ff00;
}

#sobre-nos h2,
#como-chegar h2,
#treinadores h2 {
  font-size: 60px;
  color: #00ff00;
  /* Verde neon */
  margin-bottom: 30px;
  font-weight: bold;
}

#horarios h2 {
  font-size: 60px;
  color: #00ff00;
  /* Verde neon */
  font-weight: bold;
}

#horarios {
  background: linear-gradient(to right, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.2)),
    url("../assets/images/placa.jpg") no-repeat center center;
  background-size: cover;
}

#sobre-nos {
  background: linear-gradient(to right, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.2)),
    url("../assets/images/fotoInicio.jpg") no-repeat center center;
  background-size: cover;
}

#treinadores {
  background: linear-gradient(
      to right,
      rgba(0, 0, 0, 0.85),
      rgba(0, 0, 0, 0.85)
    ),
    url("../assets/images/turma.jpeg") no-repeat center center;
  background-size: cover;
}

#como-chegar {
  background: linear-gradient(to right, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.2)),
    url("../assets/images/placa.jpg") no-repeat center center;
  background-size: cover;
}

#sessao-final {
  background-color: black; /* Fundo preto */
  color: white; /* Texto branco */
  min-height: 100vh; /* Altura mínima da seção */
  display: flex;
  align-items: center;
  justify-content: flex-start; /* Alinha o conteúdo à esquerda */
  background: linear-gradient(to right, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.2)),
    url("../assets/images/btkin.jpg") no-repeat center center;
  background-size: cover;
}

.contact-title {
  color: #00ff00; /* Verde neon */
  font-weight: bold;
  font-size: 50px; /* Tamanho da fonte */
  text-align: left; /* Alinha o título à esquerda */
  margin-bottom: 40px; /* Espaçamento abaixo do título */
}

.contact-info {
  font-size: 20px; /* Tamanho da fonte das informações */
  text-align: left; /* Alinha o texto à esquerda */
  margin-bottom: 20px; /* Espaçamento entre as linhas */
  color: #00ff00; /* Verde neon */
}

.social-icons {
  display: flex;
  justify-content: flex-start; /* Alinha os ícones à esquerda */
  gap: 15px; /* Espaçamento entre os ícones */
}

.social-icons a {
  color: #ff0080; /* Cor dos ícones (rosa) */
  font-size: 28px; /* Tamanho dos ícones */
  transition: 0.3s; /* Transição suave ao passar o mouse */
}

.avaliacoes-section {
  background-color: black;
  padding: 40px 20px;
  text-align: center;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.avaliacao-box {
  padding: 50px;
  border: 2px solid white;
  border-radius: 10px;
  text-align: justify;
  color: white;
  font-size: 20px;
  min-height: 400px;
  max-width: 360px;
  margin: 0 auto;
}
.avaliacao-box strong {
  display: block;
  margin-top: 40px;
  color: #00ff00;
  font-size: 22px;
  text-align: left;
}
.avaliacoes-section h2 {
  color: #00ff00;
  font-size: 50px;
  margin-bottom: 60px;
  font-weight: bold;
}

@media (max-width: 768px) {
  .carousel-inner {
    flex-direction: row;
  }
  .carousel-item {
    justify-content: center;
  }
  .desktop-view {
    display: none;
  }
}
@media (min-width: 769px) {
  .mobile-view {
    display: none;
  }
}
