@charset "UTF-8";

/* Mobile First */

*{
    font-family: Arial, Helvetica, sans-serif;
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

/* Paleta de cores */

:root{
    --Color1: #8aca9f;
    --Color2: #99b6c7;
    --Color3: #8aca9f;
    --Color4: #7ec4ec;
}

body{
    height: 700px;
    background: white url(../imagens/consultorio.jpg) no-repeat;
    background-size: cover;
    background-position: center center;
}

header{
    background-color: white;
}

header div#logo, footer div#logo-footer{
    display: flex;
    justify-content: center;
    padding: 10px;
}

span#burguer{
    background-color: var(--Color1);
    color: white;
    display: block;
    text-align: center;
    padding: 10px;
    cursor: pointer;
}

span#burguer:hover{
    background-color: var(--Color2);
    color: var(--Color1);
}

menu{
    display: none;
}

menu > ul{
    list-style: none;
}

menu > ul > li > a{
    display: block;
    padding: 10px;
    text-decoration: none;
    text-align: center;
    color: white;
    background-color: var(--Color2);
    border-bottom: 2px solid var(--Color1);
}

menu > ul > li > a:hover{
    background-color: var(--Color3);
}

main{
    display: flex;
    width: 90vw;
    margin: 20px auto;
}

article{
    background-color: rgba(255, 255, 255, 0.815);
    margin: auto;
    margin-top: 20px;
    padding: 10px;
    border-radius: 12px;
    box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    padding-bottom: 20px;
    margin: 0 auto;
}

article > h2{
    text-align: center;
    font-size: 2em;
    color: var(--Color3);
    padding-bottom: 10px;
}

article > p{
    text-align: center;
}

.sobre{
    background-color: white;
}
.sobre > h2{
    font-size: 2em;
    color: var(--Color3);
    text-align: center;
    padding-top: 10px;
}
.sobre > p{
    width: 90vw;
    text-align: justify;
    margin: auto;
    padding: 20px;
    text-indent: 20px;
}
.listaTexto, .subtituloTexto{
    width: 90vw;
    text-align: justify;
    margin: -20px auto;
    text-indent: 30px;
    max-width: 720px;
    font-weight: bold;
}
.subtituloTexto{
    margin: auto;
    padding: 10px 20px;
    font-size: 1.2rem;
    text-align: left;
    text-indent: 20px;
    color: var(--Color3);
}
.listaTexto > p{
    padding: 10px;
}

section{
    background-color: white;
    display: block;
    height: auto;
    padding: 2px;
}

section > h2{
    display: block;
    text-align: center;
    font-size: 2em;
    color: var(--Color1);
    width: 90vw;
    margin: 20px auto 0;
}

/* Aqui está os Cards com nome, foto e descrição da equipe*/

.card-tratamento{
    display: block;
    width: 80vw;
    margin: 20px auto;
    text-align: center;
    padding: 10px;
    border-radius: 12px;
    box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.card-tratamento > h3{
    font-size: 2em;
    padding: 10px;
    color: var(--Color1);
}

.card-tratamento > img{
    width: 100%;
}

.card-tratamento > p{
    text-align: justify;
    text-indent: 1em;
    padding: 10px;
}

button{
    margin: 0 auto;
    cursor: pointer;
    display: block;
    padding: 6px 12px;
    color: white;
    background-color: var(--Color3);
    border: none;
    border-radius: 12px;
}
.voltar{
    background-color: var(--Color2);
}
button > a{
    text-decoration: none;
    color: white;
}
button:hover, .voltar:hover{
    background-color: var(--Color4);
}

.btn-agendar{
    display: flex;
    justify-content: center;
    gap: 10px;
}

/* Aqui está os dados de contato e localização da empresa*/

.mapa{
    background-color: var(--Color2);
    display: block;
    justify-content: center;
    gap: 20px;
    margin: 20px auto 0;
    padding: 20px;
}

.mapa > iframe{
    height: 300px;
    width: 90vw;
    border-radius: 8px;
    box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.555);
}
.mapa > aside{
    width: 90vw;
    color: white;
}
.mapa > aside > h2{
    font-size: 2em;
    text-align: left;
    padding: 10px 0px;
    color: white;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.712);
}
.mapa > aside > p{
    font-size: 1.2m;
    line-height: 1.4em;
}

footer{
    height: 350px;
    background-color: var(--Color1);

}
footer > p{
    font-size: 1.5em;
    color: white;
    text-align: center;
}
.contact{
    color: white;
    display: flex;
    justify-content: center;
}
.contact > ul > li{
    list-style: none;
    margin: 10px;
}
.contact > ul > li > a{
    font-size: 1.5em;
    color: white;
}
.contact > ul > li > a:hover{
    color: green;
}