/* Este é uma página de estilos geral TODO O CÓDIGO EXTRA DEVE SER COLOCADO AQUI*/

/* Geral  */

html,body{
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
  }
.body{
    line-height: normal;
}

/* Cabeçalho */

.cabecalho{
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.356), rgba(0, 0, 0, 0.952)),url("../images/hero-bg.jpg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 140px 10px 60px 10px;
    color: white;
    background-color: #9D5900;
    text-align: center;
    min-height: 100%;
}

.tabela{
    font-size: 25px;
    font-family: 'Montserrat', sans-serif;
    padding-bottom: 50px;
}

.cabecalho h1{
    font-size: 80px;
    color: white;
    padding-bottom: 20px;
}

.cabecalho ul{
    list-style: none;
    font-family: 'Montserrat', sans-serif;
}
.cabecalho a{
    color: white;
}

/* Seccao "Inicio"  */
.inicio{
    padding: 60px 5%;
    background-color: black;
    min-height: 500px;
    min-height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}


.image-inicio{
    width: 50%;
    float: left;
    margin: 0 100px 20px 20px;
}

.texto-inicio{
    width: 80%;
    margin: auto;
}

.inicio img{
    width: 100%
}

.inicio p{
    color: rgb(199, 199, 199);
    font-family: 'Montserrat', sans-serif;
    font-size: large;
}

.inicio h2{
    color: white;
    font-size: 40px;
}


/* Aplicações */ 

.aplicacao{
    background-color: #006E90;
    padding: 100px 50px;
    min-height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.texto-aplicacao{
    width: 50%;
    margin: auto;
    font-size: large;
    color: rgb(224, 224, 224);
}

.texto-aplicacao p{
    font-family: 'Montserrat', sans-serif;
}

.texto-aplicacao h2{
    color: white;
    font-size: 40px;
}

.texto-aplicacao a{
    background: #ffffff;
    color: #006E90;
    max-width: 100%;
}

/* Saúde */

.saude{
    background-color: rgb(150, 0, 0);
    padding: 100px 50px;
    min-height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.texto-saude{
    width: 50%;
    margin: auto;
    font-size: large;
    color: rgb(224, 224, 224);
}

.texto-saude p{
    font-family: 'Montserrat', sans-serif;

}
.texto-saude h2{
    color: white;
    font-size: 40px;
}

.texto-saude a{
    background: #ffffff;
    color: #470000;
    max-width: 100%;
}



/* Ambiente */

.ambiente{
    background-color: rgb(0, 122, 31);
    padding: 100px 50px;
    min-height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.texto-ambiente{
    width: 90%;
    padding-left: 10px;
    margin: auto;
    font-size: large;
    color: rgb(224, 224, 224);
}

.texto-ambiente p{
    font-family: 'Montserrat', sans-serif;

}
.texto-ambiente h2{
    color: white;
    font-size: 40px;
}

.texto-ambiente a{
    background: #ffffff;
    color: #470000;
    max-width: 100%;
}

.imagem-ambiente{
    max-width: 400px;
    margin: auto;
}


/* Rádio */
.radio{
    background-color: black;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.texto-radio{
    width: 90%;
    margin: auto;
    font-size: large;
    color: rgb(224, 224, 224);
}

.texto-radio h2{
    color: white;
    font-size: 40px;
}

.texto-radio p{
    font-family: 'Montserrat', sans-serif;
}
.texto-radio a{
    background: #ffffff;
    color: #000000;
    max-width: 100%;
}


/* Descobrir -> páginas saude, aplicacao,...*/

.conteudo-pagina{
    width: 75%;
    margin: auto;
}

.conteudo-pagina-extra{
    background-color: rgb(112, 0, 0);
    padding: 40px 0 40px 0;
    margin: 30px 0 30px 0;
  }
  
  .dicionario-aplicacao{
      width: 60%;
      margin: auto;
  }

#info-conceitos{
    color: white;
    padding-bottom: 10px;
}

#butao-mais{
        background-color: white;
        color: rgb(112, 0, 0);
    }

.dicionario-aplicacao h3{
      color: white;
      font-size: 40px;
  }

  .dicionario-aplicacao dt, .dicionario-aplicacao dd{
      color: white;
  }


  

/* Relatórios */
#relatorio{
    background-color: white;
    color: black;
}

.relatorio-div{
    width: 60%;
    margin: auto;
    padding: 80px 0 40px 0;
}



/* Telemóveis */

@media screen and (max-width: 700px){
    .cabecalho h1{
        font-size: 30px;
    }
    .image-inicio{
        display: block;
        width: 100%;
        margin: 0;
    }
    .texto-aplicacao{
        width: 90%;
        margin: auto;
    }
    .texto-saude{
        width: 90%;
        margin: auto;
    }
    .relatorio-div{
        padding-top: 100px;
        width: 90%;
        margin: auto;
    }
    .imagem-ambiente{
        display: none;
    }
}

