/*                    Variáveis                    */

:root{
  --fonte-principal: "Sofia Sans Extra Condensed", sans-serif;
  --cor-texto-preto: black;
  --cor-texto-branco: white;
  --cor-fundo: white;
  --cor-verde: #99ca00;
  --cor-laranja: #ff7e00;
}


/*-----------------------DESKTOP----------------------*/
/*-----------------------DESKTOP----------------------*/
/*-----------------------DESKTOP----------------------*/

@media screen and (min-width: 951px){

  .home_projetos_banner{
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin-top: 50px;
    height: 331px;
  }

  .m_home_projetos{
    display: none;
  }

  .banner_texto{
    width: 175px;
    padding: 35px 25px 0 25px;
    background-color: #e6e7e8;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .banner_texto h4{
    font-weight: 600;
    font-size: 50px;
    margin-bottom: 10px;
  }

  .banner_texto p{
    text-align: center;
    font-size: 18px;
    font-weight: 300;
  }

  #imageContainer img { 
    display: none; 
  }

  #imageContainer img.active { 
    display: block; 
  }

  .botoes_banner{
    margin-top: 20px;
  }

  button{
    background: transparent;
    border: transparent;
    font-size: 40px;
    width: 50px;
  }

  .home_noticias{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 50px;
  }

  .home_noticias h1{
    font-size: 30px;
    font-weight: 300;
    border-bottom:2px solid var(--cor-laranja);
  }

  .home_noticias a{ 
    margin-top: 50px;
  }

  .banner_noticia{
    border-radius: 10px;
  }
}




/*-----------------------MOBILE----------------------*/
/*-----------------------MOBILE----------------------*/
/*-----------------------MOBILE----------------------*/

@media screen and (max-width: 950px){

  .home_projetos_banner{
    display: none;
  }

  /*------SlideShow Banners------*/

  .m_home_projetos {
    width: 75vw;
    margin: 20px auto;
    text-align: center;
    font-family: var(--fonte-principal);
  }

  .m_home_projetos_titulo{
    font-size: 30px;
    font-weight: 300;
    border-bottom: 2px solid var(--cor-laranja);
    margin-bottom: 10px;
  }

  .carrossel {
    position: relative;
    overflow: hidden;
    height: auto;
    min-height: 200px;
  }

  .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    visibility: hidden;
  }

  .slide img,
  .slide h3,
  .slide p{
    width: 75vw;
    height: auto;
  }

  .slide.active {
    opacity: 1;
    visibility: visible;
  }

  .slide-title {
    font-size: 26px;
    font-weight: 500;
    margin-bottom: 10px;
    color: var(--cor-texto-preto);
  }
  
  .slide-text {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--cor-texto-preto);
  }

  .slide-image {
    object-fit: cover;
    border-radius: 5px;
  }


  /*--------Noticias-------*/

  .home_noticias{
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .home_noticias h1{
    width: 75vw;
    font-size: 30px;
    font-weight: 300;
    border-bottom: 2px solid var(--cor-laranja);
    text-align: center;
    margin-bottom: 20px;
  }

  .banner_noticia{
    width: 75vw;
  }

  #img_maissobre0,
  #img_maissobre1,
  #img_maissobre2{
    margin-bottom: 30px;
    border-radius: 5px;
  }

}

