* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "SN Pro", sans-serif;
    font-style: normal;
    color: white;
}

main {
    height: 100vh;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;

}

a{
    text-decoration: none;
    color: #1877aa;
}

header {
    display: flex;
    background-color: linear-gradient(0deg,rgba(168, 168, 168, 0.84) 25%, rgba(0, 0, 0, 1) 100%);
    box-shadow: 5px 5px 5px 3px rgba(0, 0, 0, 0.2);
}

li {
    margin-top: 20px;
    margin-bottom: 40px;
    padding-left: 10px;
    padding-right: 40px;
    display: inline-block;
    font-size: 18px;
}

h1 {
    font-size: 36px;
    margin-bottom: 20px;
}

h2 {
    font-size: 30px;
}

h3 {
    font-size: 36px;
    margin-top: 30px;
    margin-bottom: 10px;
}

.logo-header {
    height: 30px;
    margin-top: 10px;
}

.foto-background {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    top: 0;
    left: 0;
    position: fixed;
    z-index: -2;
}

.mascara-background {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(109deg, rgba(10, 12, 16, 0.99) 15%, rgba(10, 12, 16, 0.7) 50%, rgba(10, 12, 16, 0.99) 85%);
    position: fixed;
    z-index: -1;
}

.link-header {
    margin: 15px;
    text-decoration: none;
    color: #1877aa;
    font-weight: bold;
}

.paragrafo-inicial {
    padding-left: 20px;
    margin-bottom: 40px;
    justify-content: center;
    text-align: center;
    width: 60%;
    font-size: 20px;
}

.link-header:hover {
    cursor: pointer;
    color: white;
    transition: color 0.5s ease-in-out;

}

.loc-maps {
    height: 50vh;
    width: 30vw;
    border: none;
    margin-top: 20px;
    border-radius: 10px;
}

.loc-maps:hover {
    transform: scale(1.02);
    transition: 0.5s ease-in-out;
    cursor: pointer;
}

.paragrafo-loc {
    margin-top: 20px;
    margin-bottom: 30px;
}

.telefone {
    color: white;
    font-size: 20px;
    margin-top: 20px;
    margin-bottom: 20px;
}

.telefone:hover {
    color: #1877aa;
    transform: scale(1.1);
    transition: 0.5s ease-in-out;
    cursor: pointer;
    
}

.icon-whats {
    height: 35px;
    width: 35px;
    vertical-align: middle;
    text-decoration: none;
}

.button-whats {
    background-color: #25D366;
    border-radius: 5px;
    padding: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.button-whats:hover {
    transform: scale(1.1);
    transition: transform 0.3s ease-in-out;
    background-color: #129642;
}


@media screen and (max-width: 800px) {

* { 
    align-items: center;
    justify-content: space-around;
    }

    h1 {
        font-size: 20px;
        padding-bottom: 20px;
    }

    h2{
        font-size: 18px;
        padding-bottom: 20px;
    }

   
    header {
        font-size: 12px;
        width: 100%;
    }

    li {
        display: flex;
        flex-direction: column;
        font-size: 10px;
    }

    .paragrafo-inicial {
        width: 80%;
        font-size: 15px;
    }

     .logo-header {
        height: 12px;
    }

    .titulo-loc {
        font-size: 18px;
        padding-top: 20px;
    }

    .loc-maps {
        width: 300px;
        height: 200px;
    }

    .foto-background {
        height: 100%;
    }

    .paragrafo-loc{
        justify-content: center;
    }

    .especialidade {
        justify-content: center;
    }
}