@import url(https://fonts.googleapis.com/css?family=Lato:300,300i,400,400i|Roboto:300,400&display=swap);

.fontzero {
    margin: 0;
    padding: 0;
    font-size: 0
}

:root {
    --dourado-claro: #E1B278;
    --dourado-escuro: #C29B72;
    --cinza-escuro: #393E3D;
    --cinza-medio: #8A8A8A;
    --cinza-claro: #C5C5C5
}

body,
html {
    margin: 0 !important;
    padding: 0 !important;
    font-size: 18px;
    line-height: 1.5;
    font-family: Lato, sans-serif;
    background: #FAF3EB;
}

.navbar-custom {
    height: 80px;
    position: relative;
    box-shadow: 0 2px 2px rgba(0, 0, 0, .03), 0 4px 3px rgba(0, 0, 0, .03)
}

.nav-logo {
    height: 60px;
    background-position-x: left;
    background-position-y: center;
    background-repeat: no-repeat;
    background-size: contain
}

.video-wrapper {
    max-width: 100%;
    margin: auto;
}

.carousel-inner {
    display: flex;
    justify-content: center;
    align-items: center;
}

.carousel-img {
    width: 400px;
    border: 5px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.carousel-item {
    text-align: center;
    /* Centraliza os itens no slide */
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: #000;
    /* Ícones mais visíveis */
    border-radius: 50%;
}


@media (min-width:992px) {
    .navbar-custom {
        background-color: #fff;
        padding-left: 60px;
        padding-right: 45px
    }

    .nav-logo {
        width: 320px;
        background-image: url(../img/logo-lg.svg)
    }

    .links-container {
        width: 100%;
        display: flex;
        flex-flow: row;
        align-items: center;
        justify-content: flex-end
    }

    .navbar-collapse {
        justify-content: flex-end
    }

    .nav-link {
        text-transform: lowercase;
        padding: 5px 15px !important;
        color: var(--cinza-escuro);
        font-size: 1em;
        position: relative
    }

    .nav-link::after {
        position: absolute;
        content: '';
        width: calc(100% - 30px);
        height: 2px;
        left: 15px;
        bottom: 0;
        background: linear-gradient(-60deg, #af926e, #ebb879);
        transform: scaleX(0);
        transition: 150ms
    }

    .nav-link:focus,
    .nav-link:hover {
        color: var(--cinza-escuro)
    }

    .nav-link:focus::after,
    .nav-link:hover::after {
        transform: scaleX(1);
        transition: 150ms
    }

    .nav-link-active::after {
        transform: scaleX(1)
    }

    .mobile-fix {
        width: 100%;
        height: 0;
        margin: 0;
        padding: 0
    }

    .contact-bar {
        width: 100%;
        height: 30px;
        background: linear-gradient(-60deg, var(--dourado-claro), var(--dourado-escuro));
        padding: 0 60px;
        display: flex;
        flex-flow: row;
        align-items: center;
        justify-content: space-between
    }

    .contact-links,
    .contact-social {
        display: flex;
        flex-flow: row;
        height: 100%;
        align-items: center
    }

    .contact-mail,
    .contact-phone {
        display: flex;
        flex-flow: row
    }

    .contact-icon {
        width: 20px;
        height: 20px;
        margin-right: 10px;
        background-position: center;
        background-repeat: no-repeat;
        filter: drop-shadow(0 1px 1px rgba(0, 0, 0, .1));
        margin-top: 2px
    }

    .contact-links a {
        position: relative;
        margin-right: 15px;
        color: #fff;
        font-weight: 300;
        font-size: .9em;
        transition: 150ms
    }

    .contact-links a:focus,
    .contact-links a:hover {
        padding-bottom: 5px;
        text-decoration: none;
        transition: 150ms
    }

    .contact-social a {
        transition: 150ms
    }

    .contact-social a:focus,
    .contact-social a:hover {
        margin-bottom: 5px;
        transition: 150ms
    }

    .contact-sep {
        height: 19px;
        width: 2px;
        background-color: rgba(255, 255, 255, .4);
        margin-right: 15px
    }

    .contact-links a:last-child {
        margin-right: 0
    }

    .shadow {
        display: none
    }

    .cb-mobile {
        display: none
    }
}

@media (max-width:991px) {
    .navbar-custom {
        background-color: rgba(255, 255, 255, .96);
        padding-left: 0 !important;
        padding-right: 0 !important;
        position: fixed;
        width: 100%;
        z-index: 999
    }

    .nav-logo {
        margin-left: 15px;
        width: 320px;
        max-width: 75%;
        background-image: url(../img/logo-lg.svg)
    }

    .navbar-toggler {
        width: 48px;
        height: 48px;
        border: none;
        border-radius: 0;
        opacity: 1;
        margin-right: 15px;
        display: flex;
        flex-flow: column;
        align-items: center;
        justify-content: center;
        outline: 0 !important
    }

    .navbar-toggler .stroke {
        width: 28px;
        height: 2px;
        border-radius: 1px;
        background-color: var(--cinza-escuro);
        box-shadow: 0 1px 1px rgba(0, 0, 0, .1);
        margin-bottom: 8px;
        transform-origin: left;
        transition: .1s
    }

    .navbar-toggler .stroke:first-child {
        transform: rotate(21deg)
    }

    .navbar-toggler .stroke:last-child {
        transform: rotate(-21deg)
    }

    .stroke:last-child {
        margin-bottom: 0
    }

    .navbar-toggler.collapsed .stroke {
        transform: rotate(0);
        transition: .1s
    }

    .mobile-fix {
        width: 100%;
        height: 80px;
        margin: 0;
        padding: 0
    }

    .contact-bar {
        display: none
    }

    .navbar-collapse {
        background-color: rgba(255, 255, 255, .96);
        margin-top: 10px;
        padding-top: 15px;
        position: relative
    }

    .shadow {
        position: absolute;
        top: 0;
        left: 0;
        height: 4px;
        width: 100%;
        background: linear-gradient(to bottom, rgba(0, 0, 0, .1), rgba(0, 0, 0, 0))
    }

    .navbar-nav {
        height: 100vh
    }

    .nav-link {
        color: var(--cinza-escuro);
        text-align: center;
        padding-bottom: 5px;
        margin-bottom: 10px;
        position: relative;
        font-weight: 300;
        font-size: 1.25em;
        text-transform: lowercase;
        text-shadow: 0 1px 1px rgba(0, 0, 0, .16)
    }

    .nav-link::after {
        position: absolute;
        content: '';
        width: 60px;
        height: 2px;
        left: calc(50% - 30px);
        bottom: 0;
        background: linear-gradient(-60deg, #af926e, #ebb879);
        transform: scaleX(0);
        transition: 150ms
    }

    .nav-link:focus,
    .nav-link:hover {
        color: var(--cinza-escuro)
    }

    .nav-link:focus::after,
    .nav-link:hover::after {
        transform: scaleX(1);
        transition: 150ms
    }

    .nav-link-active::after {
        transform: scaleX(1)
    }

    .cb-mobile {
        padding-top: 20px;
        margin-top: 20px;
        position: relative
    }

    .cb-mobile::before {
        position: absolute;
        content: '';
        top: 0;
        left: calc(50% - 75px);
        width: 150px;
        height: 1px;
        background-color: rgba(180, 180, 180, .35)
    }

    .contact-box {
        margin: 0 15px;
        display: flex;
        flex-flow: column;
        align-items: center
    }

    .contact-box a {
        color: var(--cinza-medio);
        font-weight: 300;
        margin-bottom: 10px;
        display: flex;
        flex-flow: row;
        align-items: center;
        height: 35px
    }

    .contact-box>a .contact-icon {
        background-size: contain
    }

    .contact-icon {
        width: 18px;
        height: 18px;
        margin-top: 3px;
        margin-right: 10px;
        background-position: center;
        background-repeat: no-repeat
    }

    .cb-mobile .social-icons {
        display: flex;
        flex-flow: row;
        width: 60%;
        align-items: center;
        justify-content: space-between;
        max-width: 350px
    }

    .cb-mobile .social-icons .contact-icon {
        width: 35px
    }
}

.section {
    padding: 60px 0
}

.section-title {
    font-size: 2.5em;
    text-shadow: 0 1px 2px rgba(0, 0, 0, .1);
    position: relative;
    margin: 0 0 30px 0;
    padding-bottom: 8px;
    color: var(--dourado-escuro);
    line-height: 1em
}

.section-title::after {
    position: absolute;
    content: '';
    width: 85px;
    height: 2px;
    left: 15px;
    bottom: 0;
    background: linear-gradient(-65deg, var(--dourado-escuro), var(--dourado-claro))
}

.secondary-title {
    font-size: 1.5em;
    font-style: italic;
    font-weight: 300;
    margin: 0 0 10px 0;
    color: var(--dourado-escuro);
    display: inline-block;
    width: 100%
}

.sec-detail {
    position: relative;
    padding-bottom: 5px
}

.sec-detail::after {
    position: absolute;
    content: '';
    bottom: 0;
    left: 0;
    width: 85px;
    height: 1px;
    background: linear-gradient(to right, var(--dourado-claro), var(--dourado-escuro))
}

.text {
    font-weight: 300;
    font-size: 1em;
    line-height: 1.5rem;
    color: var(--cinza-medio);
    margin-bottom: 20px;
    text-align: justify;
    hyphens: auto
}

.primary-button {
    padding: 5px 30px;
    color: var(--dourado-claro);
    font-size: 1em;
    font-weight: 400;
    border-radius: 2px;
    border: 2px solid var(--dourado-claro);
    filter: drop-shadow(0 1px 1px rgba(0, 0, 0, .16));
    background-color: transparent;
    transition: 150ms
}

.btn-lg {
    font-size: 1.25em
}

.primary-button:focus,
.primary-button:hover {
    text-decoration: none;
    color: #fff;
    background: radial-gradient(var(--dourado-escuro), var(--dourado-claro));
    transition: 150ms
}

.sec-page {
    background-image: url(../img/top-corner-detail.svg);
    background-position-x: left;
    background-position-y: top;
    background-repeat: no-repeat
}

.section-hl,
.slide-page {
    padding: 0;
    height: calc(100vh - 110px);
    width: 100%
}

.slide-page1 {
    background-size: cover;
    background-position-x: center;
    background-position-y: bottom;
    background-repeat: no-repeat;
    background-image: url(../img/home_cirurgia_5_jpg.jpg);
    background-position: right 50% bottom 80%
}

.slide-page2 {
    background-size: cover;
    background-position-x: center;
    background-position-y: bottom;
    background-repeat: no-repeat;
    background-image: url(../img/home_cirurgia_6_jpg.jpg);
    background-position: right 50% bottom 80%
}

.carousel {
    height: 100%
}

.slider-box-container {
    height: calc(100vh - 110px);
    padding: 15px 30px 30px 30px;
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: flex-end
}

.slider-box {
    opacity: 0;
    width: 100%;
    max-width: 600px;
    height: auto;
    min-height: 120px;
    background-color: rgba(255, 255, 255, 1);
    box-shadow: 0 2px 2px rgba(0, 0, 0, .05), 0 4px 3px rgba(0, 0, 0, .05);
    transition: .5s;
    transition-delay: .2s;
    padding: 30px
}

.slider-box p.text {
    color: #666
}

.carousel-item.active .slider-box {
    margin-bottom: -350px;
    opacity: 1;
    transition: .8s
}

.box-title {
    font-size: 2em;
    font-style: italic;
    font-weight: 400;
    text-shadow: 0 2px 2px rgba(0, 0, 0, .1)
}

.carousel-item .text {
    position: relative;
    padding-top: 15px;
    margin-top: 5px;
    margin-bottom: 20px
}

.carousel-item .text::before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 120px;
    height: 1px;
    background-color: #dfdfdf
}

.btn-container {
    margin-top: 10px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center
}

.carousel-indicators li {
    background: linear-gradient(-60deg, var(--dourado-escuro), var(--dourado-claro));
    box-shadow: 0 1px 2px rgba(0, 0, 0, .1), 0 2px 3px rgba(0, 0, 0, .1);
    margin-top: 2px;
    transition: .1s
}

.carousel-indicators li.active {
    margin-top: 0;
    transition: .1s;
    box-shadow: 0 3px 3px rgba(0, 0, 0, .1), 0 4px 4px rgba(0, 0, 0, .1)
}

.carousel-control-next,
.carousel-control-prev {
    width: 48px;
    opacity: 1;
    background-position: center;
    background-repeat: no-repeat
}

.carousel-control-prev {
    background-image: url(../img/arrow.png);
    transform: rotate(180deg);
    filter: drop-shadow(0 1px 1px rgba(0, 0, 0, .15))
}

.carousel-control-next {
    background-image: url(../img/arrow.png);
    filter: drop-shadow(0 1px 1px rgba(0, 0, 0, .15))
}

.slider-box form {
    display: flex;
    flex-flow: column;
    align-items: center
}

.highlight-text {
    font-style: italic;
    font-size: 1.25em;
    color: (var(--cinza-escuro))
}

.hl-field {
    border-radius: 25px;
    width: 100%;
    max-width: 250px
}

.about-content {
    padding-right: 30px
}

.ul-list {
    padding: 0;
    list-style-type: none;
    margin-bottom: 30px
}

.ul-list li {
    font-weight: 400;
    display: block;
    padding-left: 30px;
    position: relative;
    margin-bottom: 10px;
    text-align: left
}

.ul-list li::before {
    position: absolute;
    content: '';
    left: 0;
    top: 0;
    width: 16px;
    height: 1.4em;
    background-image: url(../img/list-style.png);
    background-position: center;
    background-repeat: no-repeat;
    filter: drop-shadow(0 1px 1px rgba(0, 0, 0, .05))
}

.quote {
    width: 100%;
    position: relative;
    display: block
}

.quote p {
    position: absolute;
    font-size: 1.5em;
    color: var(--dourado-claro);
    font-style: italic;
    text-align: center;
    position: relative
}

.q-mark {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    flex-flow: row;
    justify-content: space-between
}

.q-box {
    width: 65px;
    height: 65px;
    background-image: url(../img/quote.png);
    background-size: contain;
    background-repeat: no-repeat;
    filter: drop-shadow(0 1px 1px rgba(0, 0, 0, .05))
}

.q-close {
    align-self: flex-end;
    transform: rotate(180deg);
    filter: drop-shadow(0 -1px 1px rgba(0, 0, 0, .05))
}

.about-image {
    display: flex;
    align-items: flex-start;
    justify-content: center
}

.about-image img {
    width: 100%
}

.section-blog {
    background-color: var(--cinza-escuro);
    background-image: url(../img/article-detail-lg.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain
}

.section-blog .section-title {
    margin-bottom: 25px
}

.article-container {
    padding: 5px 5px 0 5px;
    display: block;
    text-decoration: none !important;
    transition: .1s;
    margin-bottom: 10px
}

.article-card {
    padding: 10px;
    background-color: #fff;
    box-shadow: 0 1px 2px rgba(0, 0, 0, .6);
    transition: .1s
}

.article-img {
    width: 100%;
    height: 247px;
    margin-bottom: 10px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-color: var(--cinza-claro)
}

.article-title {
    font-size: 1.25em;
    font-weight: 400;
    text-align: center;
    margin-bottom: 10px
}

.article-descp {
    position: relative;
    line-height: 1.4;
    text-align: center;
    margin-bottom: 0;
    max-height: 80px;
    overflow: hidden
}

.article-container:focus,
.article-container:hover {
    padding-top: 0;
    padding-bottom: 5px;
    transition: .1s
}

.article-container:focus .article-card,
.article-container:hover .article-card {
    box-shadow: 0 6px 4px rgba(0, 0, 0, .16);
    transition: .1s
}

.section-videos {
    background-image: url(../img/bottom-corner-detail.svg);
    background-position-x: right;
    background-position-y: bottom;
    background-repeat: no-repeat
}

.video-wrapper {
    position: relative;
    padding-bottom: 49.25%;
    padding-top: 25px;
    height: 0
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%
}

.button-container {
    margin-top: 30px;
    display: flex;
    flex-flow: row;
    align-items: center;
    justify-content: center
}

.footer {
    background-image: url(../img/detail-desktop.svg), radial-gradient(#4b5452, var(--cinza-escuro));
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center
}

.footer .text {
    color: #fff
}

.footer-link {
    position: relative;
    display: block;
    height: 28px;
    margin-bottom: 5px;
    padding-left: 15px;
    color: #fff;
    transition: 150ms
}

.footer-link::before {
    position: absolute;
    content: '';
    left: 0;
    top: calc(50% - 5px);
    width: 15px;
    height: 10px;
    background: url(../img/arrow.svg);
    background-position-x: 0;
    background-position-y: center;
    background-repeat: no-repeat;
    transition: 150ms
}

.footer-link:focus,
.footer-link:hover {
    padding-left: 25px;
    color: #fff;
    text-decoration: none;
    transition: 150ms
}

.footer-link:focus::before,
.footer-link:hover::before {
    background-position-x: 5px;
    transition: 150ms
}

.footer-map .footer-link {
    width: 49%;
    display: inline-block
}

.direitos {
    margin-top: 30px;
    margin-bottom: -30px;
    text-align: center;
    font-size: 16px;
    color: var(--dourado-escuro);
    font-style: italic;
    font-weight: 300;
}

.direitos a {
    color: var(--dourado-escuro);
}

.direitos a:hover {
    color: var(--dourado-escuro);
}

.grid-social {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    margin-top: 20px;
}

.grid-social a {
    display: block;
    width: 20px;
    height: 20px;
    margin-right: 15px;
    background-repeat: no-repeat;
    background-position: center;
}

.svc-container {
    padding-top: 5px;
    padding-bottom: 5px;
    margin-bottom: 10px;
    display: block
}

.svc-card {
    height: 250px;
    width: 100%;
    background: radial-gradient(white, #f1f1f1);
    box-shadow: 0 2px 2px rgba(0, 0, 0, .1);
    padding: 0;
    display: flex;
    flex-flow: row
}

.svc-img {
    min-width: 200px;
    height: 100%;
    background-color: var(--cinza-claro);
    margin-right: 15px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover
}

.svc-content {
    display: flex;
    flex-flow: column;
    justify-content: space-between;
    padding: 15px 15px 15px 0
}

.svc-title {
    font-size: 1.25em;
    font-weight: 400
}

.svc-card .primary-button {
    align-self: flex-end
}

.svc-card .text {
    text-align: left
}

.uarticle {
    padding-top: 40px
}

.uarticle,
.uservice {
    background-image: url(../img/bottom-corner-detail.svg);
    background-position-x: right;
    background-position-y: bottom;
    background-repeat: no-repeat
}

.uarticle .video-wrapper,
.uservice .video-wrapper {
    margin: 30px 0 20px 0
}

.uarticle .secondary-title,
.uservice .secondary-title {
    margin-top: 20px
}

.uarticle-text {
    padding-bottom: 50px;
    position: relative;
    margin-bottom: 50px
}

.uarticle-text::after {
    position: absolute;
    content: '';
    bottom: 0;
    left: 0;
    width: 150px;
    height: 1px;
    background-color: var(--cinza-claro);
    box-shadow: 0 1px 2px rgba(0, 0, 0, .05)
}

.uarticle-img {
    width: 100%;
    height: 250px;
    background-position: center bottom;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed
}

.uarticle-title {
    font-size: 2.5em;
    color: var(--dourado-escuro);
    text-shadow: 0 2px 3px rgba(0, 0, 0, .1);
    padding-bottom: 5px;
    position: relative;
    margin-bottom: 10px;
    text-transform: uppercase
}

.uarticle-title::after {
    position: absolute;
    content: '';
    left: 0;
    bottom: 0;
    width: 85px;
    height: 2px;
    background: linear-gradient(-60deg, var(--dourado-claro), var(--dourado-escuro))
}

.uarticle-data {
    font-size: .9em;
    font-weight: 300;
    color: var(--cinza-claro);
    margin-bottom: 30px
}

.uarticle img,
.uservice img {
    width: 100%
}

.form-col {
    padding-left: 0
}

.form-title {
    font-size: 1.75em;
    font-weight: 400;
    margin-top: 0 !important
}

.form-text {
    color: var(--cinza-escuro);
    margin-bottom: 10px
}

.form-field {
    background-color: transparent;
    padding: 5px 10px;
    font-style: italic;
    color: var(--cinza-medio);
    font-weight: 300;
    filter: drop-shadow(1px 1px 1px rgba(0, 0, 0, .05));
    border: 1px solid var(--dourado-escuro);
    transition: 150ms;
    margin-bottom: 20px
}

.form-field:focus {
    filter: drop-shadow(3px 3px 1px rgba(0, 0, 0, .1));
    transition: 150ms
}

.form-info {
    height: 50px;
    display: flex;
    flex-flow: row;
    align-items: center;
    justify-content: space-between;
    padding-right: 0
}

.alert {
    margin: 0;
    padding: 0;
    font-style: italic;
    color: var(--cinza-medio);
    font-weight: 300
}

.send-button {
    box-shadow: none;
    filter: drop-shadow(0 0 0 rgba(0, 0, 0, 0));
    border: 0;
    border-radius: 0;
    background: linear-gradient(-60deg, var(--dourado-escuro), var(--dourado-claro));
    color: #fff;
    transition: 150ms
}

.send-button:focus,
.send-button:hover {
    background: linear-gradient(-75deg, #9f8264, #c29b72);
    transition: 150ms;
    text-shadow: 0 2px 1px rgba(0, 0, 0, .1)
}

.form-img-container {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 0 0 30px
}

.form-img {
    width: 100%;
    height: 100%;
    background-color: #8a8a8a;
    border: 7px solid #fff;
    box-shadow: 0 2px 2px rgba(0, 0, 0, .05), 0 4px 3px rgba(0, 0, 0, .05);
    min-height: 400px;
    background-position-x: center;
    background-position-y: top;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url(../img/about-img.jpg)
}

.form-container {
    padding-left: 0 !important
}

.map {
    position: relative
}

.blog-card-container {
    padding: 10px 15px 0 15px;
    margin-bottom: 30px;
    transition: 150ms
}

.blog-card {
    background: linear-gradient(to right, #eee, #f7f7f7, #fff);
    height: 200px;
    display: flex;
    flex-flow: row;
    padding: 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, .1);
    transition: 150ms
}

.blog-card-container:focus,
.blog-card-container:hover {
    padding: 0 15px 10px 15px;
    transition: 150ms;
    text-decoration: none !important
}

.blog-card-container:focus .blog-card,
.blog-card-container:hover .blog-card {
    box-shadow: 0 8px 6px rgba(0, 0, 0, .1);
    transition: 150ms
}

.blog-card-img {
    width: 100%;
    max-width: 285px;
    height: 100%;
    background-color: #00f;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover
}

.blog-card-text {
    padding: 10px 15px 5px 15px
}

.blog-card-text .secondary-title {
    margin-bottom: 5px
}

.blog-card-text .text {
    height: 80px;
    overflow: hidden;
    position: relative;
    margin-bottom: 10px
}

.pub-date {
    color: var(--cinza-claro);
    font-weight: 300;
    font-size: .9em
}

.more-container {
    display: flex;
    flex-flow: row;
    align-items: center;
    justify-content: center
}

.uservice .uarticle-title {
    margin-bottom: 30px
}

@media (min-width:1400px) {
    .slider-box-container {
        justify-content: center
    }
}

@media (max-width:1366px) {

    .section-hl,
    .slide-page,
    .slider-box-container {
        height: calc(100vh - 160px)
    }
}

@media(max-width:1200px) {
    .box-title {
        font-size: 1.6em
    }

    .section-hl,
    .slide-page,
    .slider-box-container {
        height: calc(100vh - 200px)
    }
}

@media(max-width:992px) {
    .slide-page {
        background-image: url(../img/home_livro_mobile.jpg);
        background-position: right 46% bottom 80%
    }

    .slider-box-container {
        padding: 10px !important
    }

    .carousel-item .box-title {
        display: none;
    }

    .slider-box-container p {
        /*display: none*/
        max-height: 180px !important;
        font-size: 0.9em;
        line-height: 1.2;
    }

    .carousel-item.active .slider-box {
        margin-bottom: 0
    }
}

@media (min-width:992px) {
    .secondary-card {
        display: flex;
        flex-flow: row
    }

    .secondary-card .article-img {
        height: 180px;
        min-width: 180px;
        margin-bottom: 0;
        margin-right: 10px
    }

    .secondary-card .article-descp,
    .secondary-card .article-title {
        text-align: left
    }

    .secondary-card .article-descp::after {
        display: none
    }

    .map::before {
        position: absolute;
        content: '';
        left: 0;
        top: 5%;
        width: 1px;
        height: 90%;
        background-color: #eee
    }
}

@media (max-width:991px) {

    .section-hl,
    .slide-page,
    .slider-box-container {
        height: calc(100vh - 80px)
    }

    .slider-box-container {
        padding: 30px 15px
    }

    .about-content {
        padding-right: 15px
    }

    .quote p {
        font-size: 1.25em
    }

    .q-box {
        width: 50px;
        height: 50px
    }

    .section-blog .article-descp::after {
        display: none
    }

    .section-videos {
        background-size: 50%
    }

    .video-container {
        margin-bottom: 30px
    }

    .button-container {
        justify-content: center
    }

    .footer-col {
        margin-bottom: 30px
    }

    .footer-col .text {
        margin-bottom: 30px
    }

    .svc-container {
        margin-bottom: 30px
    }

    .svc-card {
        flex-flow: column;
        height: auto
    }

    .svc-img {
        width: 100%;
        min-height: 200px
    }

    .svc-content {
        padding-left: 15px
    }

    .svc-card .primary-button {
        align-self: center
    }

    .form-img-container {
        padding-left: 15px;
        margin-top: 30px
    }

    .map {
        margin-top: 20px
    }

    .blog-card {
        flex-flow: column;
        height: auto
    }

    .blog-card-img {
        min-height: 200px;
        max-width: 100%
    }

    .blog-card-text .secondary-title {
        margin-bottom: 10px;
        padding-bottom: 10px
    }
}

@media (max-width:575px) {
    .section-title {
        font-size: 2em
    }

    .section-title::after {
        width: 45px
    }

    .carousel-item .slider-box {
        padding: 15px;
        max-width: 330px
    }

    .carousel-item .box-title {
        font-size: 1.5em;
        text-align: center;
        margin-bottom: 20px
    }
}

@media (max-height:560px) {
    .cb-mobile {
        display: none
    }

    .carousel-item .slider-box {
        padding: 15px;
        max-width: 330px
    }

    .carousel-item .box-title {
        font-size: 1.5em;
        text-align: center;
        margin-bottom: 20px
    }

    .carousel-item .text {
        display: none
    }
}

@media (max-height:380px) and (max-width:991px) {
    .nav-link {
        font-size: 1em;
        margin-bottom: 5px
    }

    .navbar-collapse {
        padding-top: 5px
    }
}

@media (min-width:400px) {
    .form-img {
        min-height: 600px !important
    }
}

@media(max-width:992px) {
    .slider-box {
        background-color: rgba(255, 255, 255, .85) !important
    }
}

@media(min-width:992px) and (max-width:1199px) {
    .svc-title {
        font-size: 1em
    }

    .svc-card p.text {
        font-size: .8em !important
    }

    .svc-card .primary-button {
        font-size: .9em;
        padding: 3px 20px
    }
}

.content-sir p {
    font-weight: 300;
    font-size: 1em;
    line-height: 1.5rem;
    color: var(--cinza-medio);
    margin-bottom: 20px;
    text-align: justify;
    hyphens: auto
}

.content-sir h2 {
    font-size: 1.5em;
    font-style: italic;
    font-weight: 300;
    margin: 20px 0;
    color: var(--dourado-escuro);
    display: inline-block;
    width: 100%
}

#downloadEbook .spam {
    font-size: 12px;
    text-align: center;
    display: block;
    width: 100%
}

#downloadEbook label {
    color: var(--dourado-escuro)
}

#downloadEbook .form-control {
    border: 1px solid #e1b278 !important
}

#downloadEbook .form-control:focus {
    box-shadow: 0 0 0 .2rem rgba(225, 178, 220, .25)
}

#downloadEbook .modal-header {
    color: var(--dourado-escuro);
    display: block
}

.closed-eyes {
    padding: 50px
}

#whatsapp {
    padding: 10px;
    position: fixed;
    top: 90%;
    right: 20px;
    font-size: 30px;
}

#whatsapp img {
    width: 64px;
    height: 64px;
}


/* EBOOKS */

.grid-ebooks {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
}

.ebooks {
    width: 30%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 1px solid #DEDEDE;
    box-sizing: border-box;
    margin: 5px;
    padding: 15px;
    border-radius: 20px;
    min-height: 472px;
}

.ebooks h3 {
    font-size: 1.3em;
    font-style: italic;
    font-weight: 300;
    margin: 0 0 8px 0;
    color: var(--dourado-escuro);
    display: inline-block;
    width: 100%;
    text-align: center;
}

.ebooks a {
    box-shadow: none;
    filter: drop-shadow(0 0 0 rgba(0, 0, 0, 0));
    border: 0;
    border-radius: 0;
    background: linear-gradient(-60deg, var(--dourado-escuro), var(--dourado-claro));
    color: #fff;
    transition: 150ms;
    text-decoration: none;
    display: inline-block;
    padding: 8px 16px;
    margin-top: 15px;
}

.ebooks a:hover {
    background: linear-gradient(-75deg, #9f8264, #c29b72);
    transition: 150ms;
    text-shadow: 0 2px 1px rgb(0 0 0 / 10%);
}

@media(max-width:992px) {
    .ebooks {
        width: 90%;
    }
}


/* SAFIRA */

.section-safira {
    background: #303A93;
    background-image: radial-gradient(circle at 74.19% 43.52%, #303A93 0, #161C3C 100%);
}

.section-safira h2 {
    margin: 0 0 10px 0;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.5;
    color: #fff;
    width: 50%;
    text-align: right;
    float: right;
}

.btnConheca {
    display: block;
    width: 200px;
    background: #FFF;
    padding: 10px 15px;
    border-radius: 10px;
    margin: 35px auto;
    text-decoration: none;
}

.btnConheca:hover {
    text-decoration: none;
}

.counter-container {
    display: flex;
    justify-content: space-around;
    text-align: center;
    padding: 20px;
    width: 100%;
}

.counter-item {
    text-align: center;
    width: 25%;
    color: var(--dourado-escuro);
}

.counter {
    font-size: 2.5em;
    font-weight: bold;
}

.counter-prefix {
    font-size: 2.5em;
    font-weight: bold;
}

.counter-label {
    font-size: 1.2em;
    color: #666;
    margin-top: 5px;
}