:root {
  --fill-layer-video-opacity: 0.37;
  --fill-layer-background-overlay-color: transparent;
  --fill-layer-background-overlay-position: absolute;
  --bg-overlay-color: rgb(98, 73, 152);
  --bg-gradient: none;
  --fill-layer-width: 100%;
}
.fundo-escolas-parceiras{
  background-image: url(../images/topo_escolas.jpg);background-repeat: no-repeat;background-size: cover;height: 400px;background-position: -240px top;
}

.texto-escolas{
  font-family: 'Dream School' !important;
    color: #e81353;
    font-size: 6em;
    display: flex;
    justify-content: end;
    /* justify-items: stretch; */
    align-items: center;
    height: 100%;
    max-width: 90%;
    line-height: 80px;
    text-align: right;
}

.texto-equipe::-webkit-scrollbar {
  height: 10px;
  width: 10px;
}

.texto-equipe::-webkit-scrollbar-track {
  border-radius: 5px;
  background-color: #DFE9EB;
}

.texto-equipe::-webkit-scrollbar-track:hover {
  background-color: #B8C0C2;
}

.texto-equipe::-webkit-scrollbar-track:active {
  background-color: #B8C0C2;
}

.texto-equipe::-webkit-scrollbar-thumb {
  border-radius: 5px;
  background-color: #CCCCCC;
}

.texto-equipe::-webkit-scrollbar-thumb:hover {
  background-color: #999999;
}

.texto-equipe::-webkit-scrollbar-thumb:active {
  background-color: #666666;
}

.video-container {
  position: relative;
  width: 100%;
  height: calc(100vh - 62px); /* Subtrai a altura do cabeçalho */
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.video-container .video-player {
  width: 100%;
  height: 100%;
  object-fit: contain ; /* Ajusta o vídeo para preencher a área mantendo a proporção */
}

.rodape-copy {
  color: #fff;
  text-align: center;
  margin-top: 40px;
  padding-bottom: 15px;
  font-size: 0.8rem;
  font-family: 'Poppins' !important;
  font-weight: 200;
}

.img-equipe {
  max-width: 100px;
  height: auto;
  margin-right: 20px;
}

.nome_equipe {

  font-family: 'Dream School' !important;
  color: #fff;
  font-size: 2rem;
  margin-top: 10px;
}

.rodape-main {
  text-align: center;
  font-family: 'Poppins' !important;
  display: flex;
  flex-direction: column;
}

.social-icons {
  text-align: center;
}

.social-icons-text {
  font-family: 'Poppins' !important;
  color: #fff;
  margin-bottom: 20px;
  margin-top: 20px;
}

.text-branco {
  font-family: 'Poppins' !important;
  color: #fff;

}
.texto-equipe {
  
  height: 220px;
  text-align: left;
  

  overflow: auto;
}

.modal_equipe {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #fcbd15;
  max-width: 90%;
  max-height: 450px;
  height:min-content;
  margin: auto;
  border-radius: 20px;
  padding: 20px;
  display: block;
  display: none;
}

.botao_fechar{
  position: absolute;    right: 0px;    margin-right: 10px;    margin-top: -10px;
}

.img-social-rodape {
  object-fit: contain;
  width: 30px;
  height: 30px;
  display: inline-block;
  margin-left: 10px;
  margin-right: 10px;
}

.link-rodape {
  display: inline-block;
  margin-left: 40px;
  margin-right: 40px;
  color: #fff;
  text-decoration: none;
  margin-top: 15px;
}

.margin-separator-rodape {
  width: 100%;
  border-top: solid 1px #ffffff66;
  height: 50px;
}

.imagem-fundo {
  background-image: url(../images/fundo.jpg);
  background-size: cover;
  background-position-y: top;
  background-position-x: 80%;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: -webkit-fill-available;
  z-index: -1;
  margin: auto;
}



.container-img-fundo {


  height: 350px;


}

.fundo-arte {
  background-image: url('images/fundo.jpg');
  /* Substitua pelo caminho correto da imagem */
  background-size: cover;
  /* Ajusta a imagem para cobrir toda a área da div */
  background-position: center;
  /* Centraliza a imagem no fundo */
  background-repeat: no-repeat;
  /* Não repete a imagem */
}

.img-composto {
  background-image: url('images/separadores/separador.jpg');
}


@media (max-width: 768px) {
  .fundo-arte {
    background-size: contain;
    /* Em dispositivos menores, ajusta para garantir a visibilidade */
    background-position: top;
    /* Ajusta a posição para garantir a visualização adequada */
  }
}


.img-logos-escola {
  object-fit: contain;
  width: 180px;
  height: 100px;
  
  margin: auto;
  text-align: center;
  margin-top: 60px;

}

.img-logos {
  object-fit: contain;
  width: 150px;
  height: 80px;
  display: block;
  margin: auto;
  text-align: center;
  margin-top: 60px;

}



.video-background-container {
  position: relative;
  width: var(--fill-layer-width);
  height: 90vh;
  /* Define a altura para ocupar toda a viewport */
  overflow: hidden;
}

.video-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Mantém o vídeo cobrindo a área de forma responsiva */
  opacity: var(--fill-layer-video-opacity);
  /* Aplica a opacidade do vídeo */
  z-index: 1;
}

.content-overlay {
  position: var(--fill-layer-background-overlay-position);
  /* Posiciona o conteúdo sobre o vídeo */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--fill-layer-background-overlay-color);
  /* Cor da camada de sobreposição */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
  /* Garante que o conteúdo esteja sobre o vídeo */
}

.content-overlay::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--bg-overlay-color);
  /* Cor de overlay */
  background-image: var(--bg-gradient);
  /* Gradiente de fundo */
  opacity: 0.5;
  z-index: 1;
}

.content-overlay h1,
.content-overlay p {
  color: #fff;
  z-index: 2;
  text-align: center;
  padding: 0 20px;
}

/* Media Queries para responsividade */
@media (max-width: 768px) {
  .content-overlay h1 {
    font-size: 1.8rem;
    /* Diminui o tamanho do título em telas menores */
  }

  .content-overlay p {
    font-size: 1rem;
    /* Ajusta o tamanho do texto em telas menores */
  }
}

@media (max-width: 480px) {
  .content-overlay h1 {
    font-size: 1.4rem;
    /* Reduz mais o tamanho do título em telas muito pequenas */
  }

  .content-overlay p {
    font-size: 0.9rem;
    /* Ajusta o texto para telas pequenas */
  }

  .video-background {
    object-fit: cover;
    /* Mantém o vídeo cobrindo a tela adequadamente em smartphones */
  }
}



nav * {
  font-family: 'Poppins' !important;
  color: #624998 !important;
  font-size: 1.1rem !important;
  font-weight: 400 !important;
}

.img-logo-nav-bar {
  max-width: 180px;
}


.active {
  font-weight: bolder !important;

}

.topo-home {
  background-image: url(../images/topo.jpg);
  min-height: 160px;
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  background-color: #190c42 !important;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;


}

.topo-home img {
  flex-grow: 0;
  max-width: 50%;
}

.text-large {
  font-family: 'Poppins';
  color: #fff;
  font-size: 1.8rem;
  font-weight: bolder;
  margin-top: 30px;
}

.text-white-paragraph {
  font-family: 'Poppins';
  color: #fff;
  font-size: 1.0rem;
}

.btn-white {
  color: #e61351 !important;
  background-color: #fff;

}

.btn-white:hover {
  color: #fff !important;
  background-color: #720b2a;
  transition: 0.1;

}

.img-circular {

  max-width: 75%;

}

.deslocamento-top {
  margin-top: 0px !important;
}


@media (min-width: 1000px) {
  .deslocamento-top {
    margin-top: -80px !important;
  }

}

@media (min-width: 576px) {



  .fundo-escolas-parceiras{
    background-image: url(../images/topo_escolas.jpg);background-repeat: no-repeat;background-size: cover;height: 627px;background-position: center top;
  }
  
  .texto-escolas{
    font-family: 'Dream School' !important;
      color: #e81353;
      font-size: 8em;
      display: flex;
      justify-content: end;
      /* justify-items: stretch; */
      align-items: center;
      height: 100%;
      max-width: 90%;
      line-height: 80px;
      text-align: right;
  }

  .texto-equipe {
  
    height: 300px;
    text-align: left;
    
  
    overflow: auto;
  }

  .botao_fechar{
    position: absolute;    right: 0px;    margin-right: 10px;    margin-top: -40px;
  }
  

  .modal_equipe {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #fcbd15;
    max-width: 750px;
    min-height: 350px;
    max-height: 650px;
    height:min-content;
    margin: auto;
    border-radius: 20px;
    padding: 50px;
    display: block;
    display: none;
  
  }

  .rodape-main {
    display: block;

  }

  .img-equipe {
    max-width: 150px;
    height: auto;
    margin-right: 20px;
  }

  .nome_equipe {

    font-family: 'Dream School' !important;
    color: #fff;
    font-size: 3rem;
    margin-top: initial;
  }

  .imagem-fundo {
    background-image: url(../images/fundo.jpg);
    background-size: cover;
    background-position-y: -60px;
    background-position-x: 100%;
    background-repeat: no-repeat;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: -webkit-fill-available;
    z-index: -1;
    margin: auto;
  }

  .container-img-fundo {


    height: 280px;


  }

  .img-logos {
    margin-top: 0px;
  }

  .img-logos-escola {
    margin: 0px;

  }



  .img-circular {
    max-width: 100%;
  }

  .text-white-paragraph {
    font-family: 'Poppins';
    color: #fff;
    font-size: 1.1rem;
  }

  .text-large {
    font-family: 'Poppins';
    color: #fff;
    font-size: 2.5rem;
    font-weight: bolder;
  }

  .topo-home {
    min-height: 620px;
  }

  .topo-home img {
    flex-grow: initial;

  }


  .img-logo-nav-bar {
    max-width: 220px;
  }


  .nav-item {
    margin-left: 50px !important;
  }

}