/*
Theme Name: Lassis Clinic
Author: Raphael Delgado
Author URI: https://mediahubtechnologies.com
Version: 1.0
*/

#top-site {
    background-color: #897C6F;
    width: 100%;
    height: auto;
}

#top-logo {
    max-width: 100%;
    margin: 1em 0;
}

#box-menu {
    text-align: right;
    display: table;
}

#box-menu a {
    margin: 0 2em;
    text-decoration: none;
    color: white;
    font-family: "Inter", sans-serif;
    font-weight: bold;
    transition: all .2s ease-in-out;
    display: table-cell;
    vertical-align: middle;
}

#box-menu a:hover {
    color: goldenrod;
    transition: all .2s ease-in-out;
}

h2 {
    text-align: center;
    font-family: "Inter", sans-serif;
    color: #897C6F;
    font-weight: bold;
    padding: 2em 0;
}

#procedimentos {
    background-color: #EDEBE9;
    padding-bottom: 4em;
}

#procedimentos ul, #procedimentos li {
    list-style: none;
    margin-left: 0;
    padding-left: 0;
}

#procedimentos strong {
    font-family: "Inter", sans-serif;
    font-size: 1.7em;
    color: #564F48;
    background-color: #d0c5a7;
    padding: 10px 1em;
    border-radius: 10px;
    cursor: pointer;
}

#procedimentos li a {
    font-size: 1em !important;
    text-decoration: none;
    color: #897C6F;
}

#procedimentos li strong i {
    margin-left: .4em;
}

.lista-tratamentos {
    padding-top: 1em;
    padding-bottom: 1em;
    background-color: white;
    border-radius: 10px;
    height: auto;
    transition: all 0.5s ease-in-out;
}

.lista-tratamentos.hide {
    overflow: hidden;
    height: 0;
    transition: all 0.5s ease-in-out;
    padding: 0;
}

#procedimentos img {
    border-radius: 50%;
    max-width: 50%;
}

#sobre {
    background-color: #EDEBE9;   
}

#sobre img {
    max-width: 100%;
    width: auto;
    margin: 4em 0;
}

#sobre p {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1.1em;
}

.btn-conheca-mais {
    background-color: #25D366;
    padding: 1em 2em;
    text-decoration: none;
    font-family: "Inter", sans-serif;
    font-weight: bold;
    border-radius: 10px;
    color: white;
}


.btn-conheca-mais:hover {
    background-color: #25D366;
    padding: 1em 2em;
    text-decoration: none;
    font-family: "Inter", sans-serif;
    font-weight: bold;
    border-radius: 10px;
    color: #897C6F;
}

.btn-conheca-mais i {
    margin-right: .6em;
    font-size: 1.2em;
}

footer p {
    margin: 0;
    font-family: "Inter", sans-serif;
}

footer a {
    text-decoration: none;
}

footer input, footer textarea, footer input::placeholder, footer textarea::placeholder {
    background-color: #EDEBE9 !important;
    margin: 1em 0 !important;
}

#btn-enviar-contato {
    background-color: #897C6F;
    color: white;
    padding: .7em 1em;
    border-radius: 5px;
    border: none;
}

#btn-enviar-contato:hover {
    background-color: #EDEBE9;
    color: #897C6F;
}

.modal-body p {
    margin-bottom: 3rem !important;
}

@media (max-width: 992px) {
    #top-logo {
        padding: 1em 2em;
    }

    #box-menu {
        display: grid;
        text-align: center;
    }

    #box-menu a {
        padding: .5em;
        font-size: 1.3em;
    }

    #sobre {
        padding: 0 0 4em 0;
    }

    #sobre img {
        margin: 4em 0 0 0;
    }
}