html {
    height: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

body {
    height: 100%;
    width: 100%;
    display: block;
    overflow: hidden;
    overflow-y: scroll;
    background: url("luciana_bg2.jpg") center no-repeat fixed;
    background-size: cover;
    margin: 0;
    padding: 0;
    font-family: "Roboto Mono", monospace;
}

a {
    text-decoration: none;
}

::-webkit-scrollbar-track {
    background-color: transparent;
    transition-duration: .7s;
}
::-webkit-scrollbar {
    width: 2px;
    background: transparent;
    transition-duration: .7s;
}
::-webkit-scrollbar-thumb {
    background: #F29F05;
    transition-duration: .7s;
}

#whats {
    display: block;
    position: fixed;
    width: 340px;
    height: 84px;
    background: url("whats.svg") no-repeat center;
    background-size: cover;
    z-index: 20000;
    border: 2px solid #FFF;
    border-radius: 10px;
    cursor: pointer;
    bottom: 30px;
    right: 30px;
    transition-duration: .7s;
    box-shadow: 2px 3px 6px #333;
}

#whats:hover {
    width: 348px;
    cursor: pointer;
    height: 89px;
    bottom: 27px;
    right: 27px;
}

header {
    background-color: #FFFFFF;
    opacity: 0.9;
    height: 600px;
    width: 100%;
    overflow: hidden;
    border-bottom: solid 5px #BF6C5A;
}

header #logo {
    background: url("logo_luciana.svg") center no-repeat;
    width: 600px;
    height: 600px;
    background-size: cover;
    margin: 0 auto;
}

section {
    display: block;
    overflow: hidden;
    width: 100%;
}

#sobre {
    display: block;
    overflow: hidden;
    /*background-color: #733729;*/
    background-color: #BF6C5A;
    color: #FFF;
    width: 1100px;
    margin: 60px auto;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 4px 6px 10px #792613;
}

#sobre_txt {
    display: inline-block;
    overflow: hidden;
    color: #FFF;
    width: 680px;
    float: left;
}

#sobre_txt p {
    font-size: 20px;
    margin: 0 0 30px;
}

#sobre_txt h1 {
    font-size: 30px;
    margin: 0 0 30px;
}

#sobre_txt p:last-child {
    margin: 0;
}

#foto {
    display: inline-block;
    width: 320px;
    height: 540px;
    background: url("luciana.jpg") right;
    background-size: cover;
    border: 4px solid #f3e4cd;
    float: right;
}


#especialidades {
    display: block;
    overflow: hidden;
    width: 100%;
    /*background-color: #f3c3a5;*/
    background-color: #2E90A6;
    text-align: center;
}

#especialidades h1 {
    color: #FFFFFF;
    font-size: 32px;
    margin: 80px 0 0;
}

#especialidades #crm {
    display: block;
    font-size: 18px;
    color: #F2BFAC;
    margin: 10px 0 80px;
}

#pediatria, #puericultura, #gastro {
    display: inline-block;
    overflow-y: hidden;
    width: 300px;
    border-right: 2px solid rgba(255, 255, 255, 0.1);
    vertical-align: top;
    padding: 0 40px;
    height: 280px;
    margin-bottom: 80px;
}

#gastro {
    border: none;
}

#especialidades h2 {
    margin: 0 0 20px;
    color: #facd2a;
    font-size: 24px;
}

#especialidades p {
    color: #FFF;
    font-size: 18px;
}

#avaliacao {
    display: block;
    overflow: hidden;
    width: 100%;
    background-color: #F3F4F5;
    text-align: center;
    padding: 60px 0;
}

#avaliacao #aval_detalhes {
    max-width: 1300px;
    width: calc(100% - 60px);
    display: block;
    overflow: hidden;
    text-align: center;
    margin: 0 auto;
}

#atendimento {
    display: block;
    overflow-y: hidden;
    max-width: 1200px;
    width: calc(100% - 140px);
    text-align: center;
    background-color: #F2BFAC;
    /*background-color: #E3E4E5;*/
    margin: 80px auto;
    border-radius: 10px;
    padding: 40px 40px 20px;
    border: 2px solid #733729;
}

#atendimento h1 {
    color: #733729;
    margin: 0;
    font-size: 32px;
}

#atendimento p {
    color: #733729;
    font-size: 18px;
    padding: 10px 0;
}


footer {
    display: block;
    overflow: hidden;
    width: 100%;
    margin: 0;
    background-color: #BF6C5A;
}

footer p {
    display: block;
    font-size: 16px;
    color: #FFF;
    margin: 30px;
}



@media screen and (max-width: 1640px) {
    header {
        height: 450px;
    }

    header #logo {
        width: 600px;
        height: 600px;
        margin: -75px auto;
    }
}

@media screen and (max-width: 1040px) {
    header {
        height: 350px;
    }

    header #logo {
        width: 500px;
        height: 500px;
        margin: -75px auto;
    }
}

@media screen and (max-width: 600px) {
    header {
        height: 250px;
    }

    header #logo {
        width: 400px;
        height: 400px;
        margin: -75px auto;
    }
}

@media screen and (max-width: 1240px) {
    #especialidades h1 {
        font-size: 28px;
        margin: 70px 0 0;
    }

    #especialidades #crm {
        margin: 10px 0 70px;
    }

    #pediatria, #puericultura, #gastro {
        display: inline-block;
        overflow-y: hidden;
        width: 260px;
        border-right: 2px solid rgba(255, 255, 255, 0.1);
        vertical-align: top;
        padding: 0 25px;
        height: 250px;
        margin-bottom: 70px;
    }

    #gastro {
        border-right: none;
    }

    #especialidades h2 {
        font-size: 20px;
    }

    #especialidades p {
        font-size: 16px;
    }

    #sobre {
        width: 760px;
        margin: 60px auto;
        padding: 30px;
    }

    #sobre_txt {
        display: inline-block;
        overflow: hidden;
        color: #FFF;
        width: 480px;
        float: left;
    }

    #sobre_txt p {
        font-size: 16px;
        margin: 0 0 20px;
    }

    #sobre_txt h1 {
        font-size: 20px;
        margin: 0 0 20px;
    }

    #foto {
        display: inline-block;
        width: 220px;
        height: 400px;
    }
}

@media screen and (max-width: 970px) {
    #especialidades h1 {
        font-size: 24px;
        margin: 40px 20px 0;
    }

    #especialidades #crm {
        margin: 10px 0 40px;
    }

    #pediatria, #puericultura, #gastro {
        display: block;
        overflow-y: hidden;
        width: calc(100% - 40px);
        border-top: 2px solid rgba(255, 255, 255, 0.1);
        border-right: none;
        vertical-align: top;
        padding: 20px 0 0;
        height: auto;
        margin: 0 20px 20px;
    }

    #especialidades h2 {
        font-size: 20px;
    }

    #especialidades p {
        font-size: 16px;
    }

    #whats {
        width: 220px;
        height: 60px;
    }

    #whats:hover {
        width: 228px;
        height: 64px;
    }


    #sobre {
        display: block;
        overflow: hidden;
        /*background-color: #733729;*/
        background-color: #BF6C5A;
        color: #FFF;
        width: calc(100% - 100px);
        margin: 40px auto;
        padding: 20px;
        border-radius: 10px;
        box-shadow: 2px 4px 6px #792613;
    }

    #sobre_txt {
        width: 100%;
        display: block;
        float: none;
    }

    #sobre_txt p {
        font-size: 16px;
        margin: 0 0 20px;
    }

    #sobre_txt h1 {
        font-size: 20px;
        margin: 0 0 30px;
    }

    #foto {
        display: block;
        width: 420px;
        height: 640px;
        background: url("luciana.jpg") right;
        background-size: cover;
        border: 4px solid #f3e4cd;
        float: none;
        margin: 20px auto 0;
    }


    #atendimento h1 {
        margin: 0;
        font-size: 20px;
    }

    #atendimento p {
        font-size: 16px;
        padding: 10px;
    }

}

@media screen and (max-width: 650px) {
    #especialidades h1 {
        font-size: 20px;
    }

    footer p {
        font-size: 12px;
        margin: 20px;
    }

    #atendimento {
        padding: 20px 20px 20px;
        width: calc(100% - 100px);
    }
}

@media screen and (max-width: 560px) {
    #atendimento h1 {
        font-size: 16px;
    }

    #atendimento p {
        font-size: 14px;
    }

    #sobre_txt p {
        font-size: 14px;
    }

    #sobre_txt h1 {
        font-size: 16px;
        margin: 0 0 20px;
    }

    #foto {
        width: 240px;
        height: 400px;
    }
}