/* GERAL */
body {
    font-family: "Roboto", sans-serif !important;
}

.font-500 {
    font-weight: 500;
}

/* LINK */
a {
    color: #002750;
}

    a:hover {
        color: #002750;
    }

/* BUTTON */
.btn-primary {
    background-color: #77c6e4 !important;
    border: 1px solid #77c6e4 !important;
}

    .btn-primary:focus {
        box-shadow: initial !important;
    }

.btn-secondary {
    background-color: transparent !important;
    border: 1px solid #fff !important;
}

    .btn-secondary:focus {
        box-shadow: initial !important;
    }

/* MODAL */
.modal-content .modal-header {
    background: #f6f6f6;
    color: #002750;
    font-weight: 400;
    border-bottom: 0;
}

.modal-content .close {
    color: #002750 !important;
    text-shadow: initial !important;
    opacity: initial !important;
}

/* TOPBAR */
.topbar {
    background: #f6f6f6;
    color: #002750;
    font-size: 15px;
    font-weight: 400;
}

    .topbar span {
        font-size: 12px;
    }

/* NAVBAR */
.navbar ul li {
    color: #002750;
    font-weight: 500;
    text-transform: uppercase;
}

/* BANNER */
.carousel.slide i.fas.fa-angle-left {
    font-size: 48px;
    color: #fff;
}

.carousel.slide i.fas.fa-angle-right {
    font-size: 48px;
    color: #fff;
}

.carousel-caption {
    position: absolute;
    right: 15%;
    top: 0;
    bottom: 0;
    left: 15%;
    z-index: 10;
    color: #fff;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.carousel-item img {
    max-width: 100%;
}

.carousel-item .carousel-caption h1 {
    color: #fff;
    font-size: 36px;
    text-transform: uppercase;
    font-weight: 500;
    text-align: center;
}

.carousel-item .carousel-caption p {
    color: #fff;
    font-size: 20px;
    font-weight: 400;
}

/* EMRPESA */
.empresa {
    padding: 100px 0;
    background-color: #f8f8f8;
}

    .empresa h3.title {
        color: #002750;
        font-size: 24px;
        text-transform: uppercase;
        font-weight: 500;
    }

    .empresa .custom-hr {
        border-bottom: 1px solid #77c6e4;
        width: 50px;
        margin: 15px 0 30px;
    }

    .empresa p {
        color: #666;
        font-weight: 300;
    }

/* TRATAMENTO */
.tratamento {
    padding: 100px 0;
    background-color: #fff;
}

    .tratamento h3.title {
        color: #002750;
        font-size: 24px;
        text-transform: uppercase;
        font-weight: 500;
        text-align: center;
    }

    .tratamento .custom-hr {
        border-bottom: 1px solid #77c6e4;
        width: 50px;
        margin: 15px auto 30px;
    }

    .tratamento p {
        color: #666;
        text-align: center;
        font-weight: 300;
    }

    .tratamento #tratamentoLesoes {
        margin-top: 35px;
    }

    .tratamento .owl-theme .owl-nav {
        display: none;
    }

    .tratamento .owl-dots {
        margin-top: 25px;
    }

    .tratamento .item {
        position: relative;
        overflow: hidden;
    }

        .tratamento .item .custom-img {
            transition: all .5s;
        }

            .tratamento .item .custom-img.hovered {
                transform: scale(1.1);
            }

        .tratamento .item .mask {
            z-index: 9;
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            background-color: #000;
            opacity: 0.6;
            width: 100%;
            height: 100%;
            display: flex;
            align-items: stretch;
        }

            .tratamento .item .mask.hovered {
                opacity: 0.4;
            }

            .tratamento .item .mask .content {
                display: flex;
                align-items: center;
                width: 100%;
                justify-content: center;
                flex-direction: column;
                text-align: center;
            }

            .tratamento .item .mask h3 {
                color: #fff;
                font-weight: 400;
                display: block;
                margin: 15px 15px 0;
            }

            .tratamento .item .mask .information {
                display: block;
                opacity: 0;
                transition: all .5s ease-out;
                transform: translateY(100%);
                height: 0;
            }

                .tratamento .item .mask .information.hovered {
                    height: auto;
                    zoom: 1;
                    opacity: 1;
                    transform: translateY(0);
                }

                .tratamento .item .mask .information a i.fas {
                    font-size: 6px;
                }

            .tratamento .item .mask a {
                color: #fff !important;
                font-weight: 400;
                font-size: 14px;
                margin: 15px;
                display: block;
                text-decoration: none !important;
            }

/* PARALLAX */

.parallax {
    background-attachment: fixed;
    width: 100%;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-size: cover;
}

    .parallax .parallax-title h3 {
        color: #fff;
        font-size: 36px;
        text-transform: uppercase;
        font-weight: 500;
        text-align: center;
        text-decoration: none;
    }

        .parallax .parallax-title h3 a {
            color: #fff;
            font-size: 36px;
            text-transform: uppercase;
            font-weight: 500;
            text-align: center;
            text-decoration: none;
        }

    .parallax .parallax-title a h3 {
        color: #fff;
        font-size: 36px;
        text-transform: uppercase;
        font-weight: 500;
        text-align: center;
        text-decoration: none;
    }

    .parallax .parallax-subtitle h5 {
        color: #fff;
        font-size: 20px;
        font-weight: 400;
        text-align: center;
    }

/* FEED FACEBOOK */
.feed-noticias {
    padding: 100px 0;
    background-color: #fff;
}

    .feed-noticias h3.title {
        color: #002750;
        font-size: 16px;
        text-transform: uppercase;
        font-weight: 500;
        text-align: center;
    }

    .feed-noticias .custom-hr {
        border-bottom: 1px solid #77c6e4;
        width: 50px;
        margin: 15px auto 30px;
    }

    .feed-noticias p {
        color: #666;
        text-align: center;
        font-weight: 300;
    }

/* FOOTER */
footer {
    padding: 50px 0 25px;
    background-color: #002750;
    color: #fff;
    text-align: center;
}

    footer .address {
        margin: 35px 0;
    }

        footer .address p {
            font-size: 14px;
            font-weight: 400;
            margin: 0 0 5px;
        }

    footer .social-media i {
        font-size: 36px;
        margin: 0 10px;
        color: #fff;
    }

    footer .copyright {
        margin-top: 35px;
        padding-top: 25px;
        border-top: 1px solid #003164;
        font-size: 14px;
        font-weight: 400;
    }

/* TITLE PAGES */
.top-img-bcg {
    background-image: url(../image/bcg-top-pages.jpg);
    background-repeat: no-repeat;
    height: 250px;
}

    .top-img-bcg h1 {
        font-size: 48px;
        color: #fff;
        font-weight: 500;
        display: flex;
        justify-content: center;
        align-items: center;
        height: 250px;
        text-transform: uppercase;
    }

/* PAGES */
.page.artigos {
    padding: 100px 0;
    background-color: #fff;
}

    .page.artigos h3 {
        text-align: center;
        font-size: 16px;
        color: #666;
        font-weight: 300;
        margin-bottom: 3rem;
    }

        .page.artigos h3.title {
            color: #002750;
            font-weight: 500;
            font-size: 16px;
            text-align: left;
            margin-bottom: 10px;
        }

    .page.artigos p.text {
        color: #666;
        font-weight: 300;
        font-size: 14px;
        text-align: left;
        margin-bottom: 10px;
        line-height: 24px;
    }

    .page.artigos .card .card-body p {
        font-size: 14px;
        font-weight: 300;
    }

    .page.artigos.links p {
        font-size: 14px;
        font-weight: 300;
    }

.page.profissionais {
    padding: 100px 0;
    background-color: #fff;
}

    .page.profissionais h3 {
        text-align: center;
        font-size: 16px;
        color: #666;
        font-weight: 300;
        margin-bottom: 3rem;
    }

    .page.profissionais .card .card-body {
        padding: 0;
        min-height: 150px;
    }

        .page.profissionais .card .card-body h5.card-title {
            color: #002750;
            font-weight: 400;
            font-size: 16px;
            margin: 25px 0 15px;
        }

        .page.profissionais .card .card-body p.card-text {
            color: #666;
            font-weight: 300;
            font-size: 14px;
            padding: 0;
        }

        .page.profissionais .card .card-body .btn {
            margin: 0.25rem 1.25rem 1.25rem;
        }

    .page.profissionais.detalhes h3.title {
        color: #002750;
        font-weight: 500;
        font-size: 16px;
        text-align: left;
        margin-bottom: 10px;
    }

    .page.profissionais.detalhes h5.subtitle {
        color: #666;
        font-weight: 300;
        font-size: 15px;
        text-align: left;
        margin-bottom: 10px;
    }

    .page.profissionais.detalhes p.text {
        color: #999;
        font-weight: 300;
        font-size: 14px;
        text-align: left;
        margin-bottom: 10px;
        line-height: 24px;
    }

    .page.profissionais.detalhes p.link {
        color: #666;
        font-weight: 400;
        font-size: 14px;
        text-align: left;
        margin-bottom: 10px;
    }

        .page.profissionais.detalhes p.link a {
            color: #77c6e4;
        }

    .page.profissionais.detalhes a.back {
        text-align: right;
        margin-bottom: 25px;
        text-transform: lowercase;
        display: block;
        font-size: 14px;
    }

.page.contato {
    padding: 100px 0;
    background-color: #fff;
}

    .page.contato h1 {
        text-align: center;
        color: #002750;
        font-size: 24px;
        font-weight: 400;
        text-transform: uppercase;
    }

    .page.contato .custom-hr {
        border-bottom: 1px solid #77c6e4;
        width: 50px;
        margin: 15px auto 30px;
    }

    .page.contato h3 {
        text-align: center;
        font-size: 18px;
        color: #666;
        font-weight: 300;
        margin-bottom: 3rem;
    }

    .page.contato .form-group label {
        color: #666;
        font-weight: 300;
    }

        .page.contato .form-group label span {
            color: #ff0000;
        }

.page.resultado-exames {
    padding: 100px 0;
    background-color: #fff;
}

    .page.resultado-exames .form-control {
        border: 1px solid #dee2e6;
    }

    .page.resultado-exames .form-control-lg {
        font-size: 14px;
    }

    .page.resultado-exames .table {
        border: 1px solid #dee2e6;
    }

        .page.resultado-exames .table thead th {
            border-bottom: 1px solid #dee2e6;
            background: #e9ecef;
        }

        .page.resultado-exames .table th {
            color: #002750;
        }

        .page.resultado-exames .table a {
            text-decoration: none;
        }

            .page.resultado-exames .table a i.fas {
                color: #002750;
            }

.header .saudacao {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

    .header .saudacao i.fas {
        color: #002750;
    }

/* LOGIN */
.login {
    height: 100vh;
    display: flex;
    align-items: center;
    background: #f6f6f6;
}

    .login label {
        color: #666;
        font-weight: 300;
    }

    .login img {
        margin: 0 auto 15px;
        display: table;
    }

    .login h3.title {
        color: #002750;
        font-size: 24px;
        font-weight: 500;
    }

/* ZOOM */
img.zoom {
    max-width: 100%;
    -moz-transition: all 0.3s;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

    img.zoom:hover {
        -moz-transform: scale(1.1);
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
    }

/* MEDIA QUERIE */
@media only screen and (min-width: 768px) {
    .parallax {
        background-image: url("../image/bcg-parallax.jpg");
    }
}

@media only screen and (max-width: 767px) {
    .navbar-collapse {
        border-top: 1px solid #f6f6f6;
        margin-top: 15px;
    }

    .navbar ul li a.nav-link {
        margin-top: 10px;
        padding: 10px;
    }

    .navbar ul li .custom-btn-primary {
        margin-top: 15px;
    }

    .navbar .navbar-toggler {
        display: flex;
        justify-content: center;
        align-items: center;
    }

        .navbar .navbar-toggler i.fas.fa-bars {
            font-size: 24px;
            color: #002750;
            margin-right: 5px;
        }

        .navbar .navbar-toggler span.menu {
            font-weight: 500;
            color: #002750;
        }

    .empresa img {
        margin-top: 35px;
    }

    .top-img-bcg h1 {
        font-size: 24px;
    }

    .parallax {
        background-image: none;
        background-color: #002750;
        width: 800px;
        height: 200px;
        max-width: 100%;
        background-size: initial;
    }

        .parallax .parallax-title h3 {
            font-size: 24px;
        }

            .parallax .parallax-title h3 a {
                font-size: 24px;
            }

        .parallax .parallax-title a h3 {
            font-size: 24px;
        }
}

/*#fb-root {
    display: none;
}
 
.fb_iframe_widget, .fb_iframe_widget span, .fb_iframe_widget span iframe[style] {
    width: 100% !important;
}

.fbCustomWidth100 {
    width: 100% !important;
}*/
