/*--//responsive-design---*/
@media screen and (max-width: 700px) {
  .esc {
    display: none;
  }

  html, body {
    background-image: url('http://localhost/velox/dist/imagens/painel/f_vertical.jpg');
  }

  .group {
    margin: -10px;
    padding: 10px;
  }
  
  .quadrado {
    padding-right: 10px;
    padding-left: 10px;
    margin-top: 15px;
  }

  .sombra-interna {
    box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.2); /* Aumenta o desfoque e o espalhamento */
  }

  body, .wrapper {
    padding: 40px;
  }

  .f-pequena {
    font-size: 14px;
  }

  .f-media {
    font-size: 30px;
  }
  
  .f-grande {
    font-size: 48px;
  }

  .logo-sp-velox{
    width: 90px;
  }
}

@media screen and (min-width: 700px) {
  .esc-d {
    display: none;
  }

  html, body {
    background-image: url('http://localhost/velox/dist/imagens/painel/f_horizontal.jpg');
  }

  .group {
    margin: -20px;
    padding: 20px;
  }

  .quadrado {
    margin-top: 15px;
    padding-right: 20px;
    padding-left: 20px;
  }

  .sombra-interna {
    box-shadow: inset 0 0 50px rgba(255, 255, 255, 0.2); /* Aumenta o desfoque e o espalhamento */
  }

  body, .wrapper {
    padding: 80px;
  }

  .f-pequena {
    font-size: 36px;
  }

  .f-media {
    font-size: 48px;
  }
  
  .f-grande {
    font-size: 69px;
  }

  .logo-sp-velox{
    width: 120px;
  }
}

html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
  color: #ffffff;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #7B2E64;
}

/* EVITA QUE UM CURSOS FIQUE PISCANDO EM AREAS QUE NÃO DEVERIA */
/* Desativa a seleção de texto em elementos específicos */
body, .wrapper {
  user-select: none;
  /* Evita a seleção de elementos */
  -webkit-user-select: none;
  /* Para compatibilidade com navegadores webkit */
  -moz-user-select: none;
  -ms-user-select: none;
}

.baloo {
  font-family: "Baloo Bhai 2", serif;
  font-weight: 800; /* Negrito */
}

.bg-purple-light {
  background-color: #ffffff1c !important;
  border: none !important;
  color: #fff;
}


.card {
  border-radius: 1.5rem;
  border: none !important;
background-color: transparent;
color: #fff;
}

.quadrado {
  display: flex;
  width: 100%; /* Preenche a largura disponível */
  aspect-ratio: 1; /* Mantém o quadrado, largura igual à altura */
  justify-content: center; /* Alinha horizontalmente no centro */
  align-items: center; /* Alinha verticalmente no centro */
  border-radius: 1rem;
}

.icone {
  width: 80%; /* Ajuste o tamanho da imagem conforme necessário */
  height: auto; /* Mantém a proporção da imagem */
}


.row {
  margin: 0;
}

.centro {
  text-align: center;
}