@import url("https://fonts.googleapis.com/css2?family=Gemunu+Libre:wght@200;300;400;500;600;700;800&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,400;1,500;1,700;1,900&display=swap');

:root {
  --dark-color:#06121E;
  --green-color:#07f9a2;
  --white:#f5f5f5;
}

*:active {
  -webkit-tap-highlight-color: transparent;
  tap-highlight-color: transparent;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: var(--dark-color);
    color: var(--white);
}

/* Estilizar a barra de rolagem */
::-webkit-scrollbar {
  width: 6px; /* Largura da barra de rolagem vertical */
  height: 6px; /* Altura da barra de rolagem horizontal */
  margin-left: 12px;
  display: block !important;
}

/* Estilizar o botão (alça) da barra de rolagem */
::-webkit-scrollbar-thumb {
  background-color: #888; /* Cor de fundo da alça da barra de rolagem */
  border-radius: 6px; /* Raio das bordas da alça */
}

/* Estilizar a trilha (fundamento) da barra de rolagem */
::-webkit-scrollbar-track {
  background-color: #ffffff; /* Cor de fundo da trilha */
}

a {
  text-decoration: none;
  color: inherit;
}
/* titles */

li {
  list-style: none;
}

hr{
  border-color: #07f9a2;
}

.page-title {
  font-size: 24px;
  font-weight: bolder;
  color: #f5f5f5;
  letter-spacing: 0;
}

.section-title {
  font-size: 32px;
  font-weight: bold;
  color: #f5f5f5;
}

/* subtitles */

.page-subtitle{
  font-size: 20px;
  font-weight: bold;
  letter-spacing: .15rem;
}

.subtitle {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: .15rem;
  color: #f5f5f5;
}

.sub-subtitle{
  font-size: 18px;
  font-weight: bolder;
}

/* Corpo do texto */
p {
  font-size: 16px;
  font-weight: 400;
  letter-spacing: .1rem;
  color: #f5f5f5;
}

.blue-dark {
  color: #010204;
}

.blue-light {
  color: #003d99;
}

.green-light {
  color: #07f9a2;
}

.white {
  color: white;
}

.btn {
  padding: 16px 16px;
  text-align: center;
  border-radius: 10px;
  font-weight: 800;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.btn-green-dark {
  background-color: #07f9a2;
  color: #010204;
}

.btn-green-light {
  background-color: #07f9a2;
  color: #f5f5f5;
}
.btn-dark-green {
  background-color: #06121E;
  color: #07f9a2;
  border: 2px solid #07f9a2;
}

.line-green {
  width: 200px;
  height: 2px;
  background-color: #07f9a2;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
}

.line-white {
  width: 100px;
  height: 1px;
  background-color: #fff;
  position: absolute;
  margin: auto;
}

.cursor-pointer{
  cursor: pointer;
}

/* IPADS AND TABLETS */
@media (min-width: 600px) {
  /* Título 1 */
  .page-title {
    font-size: 32px;
  }
  
  .section-title {
    font-size: 40px;
  }
  
  /* subtitles */
  
  .page-subtitle{
    font-size: 24px;
    font-weight: 400;
  }
  
  .subtitle {
    font-size: 24px;
    font-weight: 400;
  }
  
   .sub-subtitle{
    font-size: 20px;
  }
  /* Corpo do texto */
  p {
    font-size: 16px;
    font-weight: 400;
        letter-spacing: .1rem;
    color: #f5f5f5;
  }
}
/* LAPTOPS */
@media (min-width: 1024px) {
  /* Título 1 */
  .page-title {
    font-size: 40px;
  }
  
  .section-title {
    font-size: 48px;
  }
  
  /* subtitles */
  
  .page-subtitle{
    font-size: 32px;
  }
  
  .subtitle {
    font-size: 32px;
  }
  /* Corpo do texto */
  p {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: .1rem;
    color: #f5f5f5;
  }
}
/* LARGE SCREENS */
@media (min-width: 1440px) {
  /* Título 1 */
  .page-title {
    font-size: 48px;
  }
  
  .section-title {
    font-size: 48px;
  }
  
  /* subtitles */
  
  .page-subtitle{
    font-size: 40px;
  }
  
  .subtitle {
    font-size: 40px;
  }
  
   .sub-subtitle{
    font-size: 24px;
  }
  /* Corpo do texto */
  p {
    font-size: 18px;
    font-weight: 400;
    letter-spacing: .1rem;
    color: #f5f5f5;
  }
}
