/* Características gerais da página */
* {
    box-sizing: border-box;
}
body{
    font-family: 'Source Sans Pro', sans-serif;
    margin: 0;
    padding: 0;
}
/* Topo */
.topo{
    background-color: rgb(0,202,209);
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}
.link-topo a{ 
    text-decoration: none;
    color: white;
    font-weight: bold;
    font-size: 20px;
    padding: 10px;
}
.link-topo a:hover {
    color: #004b4c;
}
/* Fim do topo */
/* Corpo do site */
.corpo .apresentacao{
    background-image: url(../assets/recepcao.png);
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    width: 100%;
    height: 600px;
    display: flex;
    align-items: center;
}
.apresentacao h1{
    color: white;
    font-weight: normal;
    text-transform: uppercase;
    padding: calc(100%/10);
    font-size: 60px;
}
.box-conteudo{
    display: flex;
    flex-direction: column;
    text-align: center;
    color: rgb(141,136,132);
    margin: 2%;
}
#sobre{
    padding: 40px 20px 0;
}
.box-sobre{
    display: flex;
    justify-content: center;
    align-items: center;
    color: rgb(141,136,132);
}
.lista-sobre h2{
    font-weight: normal;
    text-transform: uppercase;
}
.container-especialidade{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 5%;
}
.box-especialidade{
    border-radius: 3px;
    box-shadow: 0px 1px 10px rgb(0 0 0 / 50%);
    margin: 1%;
    width: calc(100% / 3 - 40px);
    border-radius: 3px;
}
.box-especialidade figcaption{
    text-transform: uppercase;
    text-align: center;
    padding: 2%;
    color: rgb(141,136,132);
}
.box-especialidade img{
    width: 100%;
}
.box-especialidade img:hover{
    opacity: .5;
}
.link-horarios{
    background-color: rgb(0,204,209);
    width: 150px;
    height: 50px;
    margin: 20px auto;
    display: flex;
    justify-content: center;
    align-items: center;
}
.link-horarios a{
    color: white;
    text-decoration: none;
    text-transform: uppercase;
}
.link-horarios a:hover{
    color: #004b4c;
}
iframe{
    border-radius: 30px;
    margin-bottom: 20px;
}
/* Fim do corpo do site */

/*Início do rodapé */
.rodape{
    background-color: rgb(12,110,113);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
}
.rodape img{
    margin: 0 auto;
}
.box-rodape p{
    text-align: center;
    color: rgb(255, 255, 255);
}
/*Fim do rodapé */

/*Media Queries - Responsividade do site*/
/*Mobile*/
@media (max-width: 425px){
    .link-topo {
        border-top: solid 2px ;
        border-top-color: rgb(0,162,168);
        width: 100%;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
    }
    .link-topo a{
        font-size: 12px;
    }
    .topo{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 0 30px 10px;
    }
    .corpo .apresentacao{
        height: 200px;
    }
    .apresentacao h1{ 
        font-size: 22px
    }
    h2{
        font-size: 18px;
    }
    .imagem-sobre{
        display: none;
    }
    .container-especialidade{
        flex-direction: column;
    }
    .box-especialidade{
        width: 100%;
        margin-bottom: 5%;
    }
    
}
/*Tablet*/
@media (min-width: 426px) and (max-width: 768px){
    .link-topo a{
        font-size: 14px;
    }
    .topo img{
        width: 100px;
    }
    .corpo .apresentacao{
        height: 300px;
    }
    .corpo .apresentacao h1{ 
        font-size: 30px
    }
    .imagem-sobre{
        display: none;
    }
    .container-especialidade{
        justify-content: center;
    }
    .box-especialidade{
        width: 45%;
        margin-bottom: 5%;
    }
}
/*Desktop*/
@media (min-width: 767px) and (max-width: 1024px){
    .corpo .apresentacao{
        height: 400px;
    }
}
/*Desktop acima*/
@media (min-width: 1025px){
    .corpo .apresentacao{
        height: 500px;
    }
}



/*Página especialidades/////////////////////////////////////////////*/
.navegacao{
    margin: 1%;
    text-align: center;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
.navegacao a{
    margin:0.5%;
    font-size: 20px;
    text-align: center;
    text-decoration: none;
    border-bottom: solid 4px;
    border-bottom-color: rgb(0,162,168);
}
.navegacao a:hover{
    color: rgb(0,162,168);
}
#conheca{
    margin: 2%;
    color: rgb(141,136,132);
    text-align: center;
}
.boxtabela{
    margin: auto;
    display: flex;
    justify-content: center;
}
.boxdescricao{
    margin: auto;
    width: 30%;
}
.boxtabela img{
    width: 25%;
    object-fit: cover;
}
.boxtabela table{
    width: 50%;
    text-align: left;
    border-collapse: collapse;
    ;
}
.boxtabela table tr {
    background-color: #f1f1f1;
}
.boxtabela table tr:nth-of-type(2n){
    background-color:#cdcdcd;
}
.boxtabela table tr:first-of-type{
    background-color: rgb(0,202,209);
    color: white;
}
td, th{
    padding: 10px;
}

/*Media Queries - Responsividade da página especialidades*/
@media (max-width: 768px){
    .boxtabela img{
        display: none;
    }
    .boxtabela table{
        width: 100%;
    }
    .navegacao a{
        margin:2%;
        font-size: 18px;
    }
    .rodape{
        margin-top: 10%;
    }
    .boxtabela{
        width: 100%;
        }
    .boxdescricao{
        margin: auto;
        width: 90%;
    }
}
/*Mobile*/
@media (max-width: 425px){
    .box-conteudo{
        margin: 0;
    }
    
}