/* HEADER */
header.topofixo .logo {
    display: none;
}

header.topofixo .d-menu {
    display: none;
}

header {
    box-sizing: border-box;
    padding: 0px 0;
}

header .logo a {
    width: 225px;
    height: 125px;
    display: flex;
    align-items: center;
    justify-content: center;

}

header .logo a img {
    padding: 20px 0;
    width: 190px;
}

header .header .topo__itens div i {
    font-size: 50px;
    margin: 0px 14px 0 20px;
    color: var(--primary-color);
}

header .header .topo__itens div h3 {
    margin: 10px 0px;
    color: var(--primary-color);
}

header .header .topo__itens div a {
    color: var(--dark);
    margin: 2px 0;
    font-weight: 600;
}

header .header .topo__itens div {
    height: 80px;
    margin: 0px 5px;
}


header .header__nav-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    width: max-content;
    background-color: var(--dark);
}

.topofixo #menu {
    position: sticky !important;
}

/* PESQUISA */
header .header__search {
    height: 100%;
    position: relative;
    box-sizing: border-box;
    padding: 1.25rem 1.75rem;
}

header .header__search input {
    border: unset;
    outline: unset;
    background: unset;
    padding: 0;
    font: 1rem var(--primary-font);
    color: #fff;
}

header .header__search input::placeholder {
    font: 1rem var(--primary-font);
    color: #fff;
    padding: 0;
}

input:-webkit-autofill,
input:-webkit-autofill:focus {
    transition: background-color 600000s 0s, color 600000s 0s;
}

header .header__search button {
    border: unset;
    outline: unset;
    background: unset;
    padding: 0;
    position: absolute;
    top: 50%;
    right: 1.75rem;
    transform: translateY(-50%);
    font-size: 1.25rem;
    color: #fff;
}

/* MENU */
header #menu {
    position: absolute;
    z-index: 9999;
    width: 100%;
}

header #menu ul {
    display: flex;
    align-items: center;
    justify-content: center;
}

header #menu ul li {
    background-color: var(--primary-color);
}

header #menu a {
    font-size: 1rem;
    color: #f9f9f9;
    padding: 1.25rem 1.75rem;
}

header #menu>ul>li:hover>a,
header #menu>ul>li>a.active-menu-topo {
    background-color: var(--primary-color);
    color: #fff;
}

header #menu>ul>li>a {
    position: relative;
}

header #menu>ul>li>a:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 10px;
    background-color: var(--primary-color);
    transition: .3s;
    opacity: 0;
}

header #menu>ul>li:hover>a:before {
    opacity: 1;
    transform: translateY(-10px);
}

header #menu .dropdown [class*="sub-menu"] {
    background-color: var(--primary-color);
}

header #menu ul>li.dropdown>[class*="sub-menu"]>li>a {
    border-left: 2px solid transparent;
    padding: .75rem;
}

header #menu ul>li.dropdown>[class*="sub-menu"]>li:hover>a,
header #menu ul>li.dropdown>[class*="sub-menu"]>li>a.active-menu-topo {
    border-left-color: #fff;
    background-color: transparent;
    color: #fff;
}

/* MEDIUM DEVICE */
@media only screen and (max-width: 768px) {
    .topo__info {
        display: none;
    }
}

/* FOOTER */
footer {
    background-color: var(--light);
    padding: 60px 0;
    border-top: 3px solid var(--primary-color);
}

footer .footer__empresa {
    padding-right: 50px;
}

footer .footer__empresa p {
    color: var(--dark);
    font-size: 12px;
}

.logo-footer {
    display: block;
    margin: 0 auto;
}

footer .footer__menu {
    padding-left: 50px;
    padding-right: 50px;
}

footer .footer__menu nav li a {
    display: block;
    padding: 15px 0;
    border-bottom: 1.2px solid var(--primary-color);
    text-transform: uppercase;
    font-size: 12px;
    color: var(--dark);
    transition: .3s;
}

footer .footer__menu nav li:first-child a {
    padding-top: 0;
}

footer .footer__menu nav li:hover a {
    opacity: 1;
}

footer .address {
    padding-left: 50px;
}

footer .address strong {
    color: var(--dark);
    display: block;
    font-size: 15px;
    margin-bottom: 10px;
}

footer .address :is(span, a):not(.social__icons) {
    font-size: 14px;
    line-height: 28px;
    color: var(--dark);
    transition: .3s;
}



footer .social {
    justify-content: center;
    gap: 5px;
    margin-top: 15px;
}

footer .social .social__icons {
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--dark);
    width: 30px;
    height: 30px;
    border-radius: 100%;
}

footer .social .social__icons {
    background-color: rgba(0, 0, 0, 30%);
    color: #fff;
}

footer .social__icons.facebook:hover {
    background-color: #2b87c7;
    color: #fff;
}

footer .social__icons.twitter:hover {
    background-color: #38c0dd;
    color: #fff;
}

footer .social__icons.youtube:hover {
    background-color: #FF0000;
    color: #fff;
}

footer .social__icons.instagram:hover {
    background-color: #405DE6;
    color: #fff;
}

footer .social__icons.linkedin:hover {
    background-color: #2867B2;
    color: #fff;
}

/* MEDIUM DEVICE */
@media only screen and (max-width:768px) {
    footer :is(.footer__empresa, .footer__menu, .address) {
        padding: 1rem;
    }
}

/* SMALL DEVICE */
@media only screen and (max-width:576px) {
    footer .social {
        justify-content: center;
    }

    footer .footer__menu nav li a {
        width: max-content;
        margin: 0 auto;
        padding: 15px 50px;
    }
}

/* CUSTOM TITLE MODELO 06 */
.title-06 {
    font-size: 2.8em;
    text-transform: uppercase;
    text-align: center;
}

.text-06 {
    max-width: 70%;
    width: 100%;
    margin: 1em auto;

    text-align: center;

    font-size: 1.4em;
    font-weight: lighter;
    line-height: 1.5em;

    color: var(--dark);
}

.text-06:after {
    content: '';
    display: block;
    margin: 1em auto;

    width: 15%;
    height: 0.4em;
    background-color: var(--primary-color);
}

/* MAIN CONTENT */
.main .main__cover img {
    max-width: 650px;
    width: 100%;
    object-fit: cover;
}

.main .main__desc {
    padding: 2.5em 5em;
    color: var(--light);
}

.main .main__desc p {
    margin: 1.8em 0;
    font-size: 15px;
    line-height: 1.5em;
    color: var(--light);

}

.main .main__desc .dark {
    color: var(--dark);
}

.main .main__btn {
    display: inline-block;
    margin: 1em 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 1em 4.2em;
    text-align: center;
    border: 2px solid var(--light);
    background-color: transparent;
    color: var(--light);
    position: relative;
}


.main .main__btn:after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    z-index: 0;
    width: 1%;
    height: 100%;
    background-color: var(--light);
    opacity: 0;
    transition: .5s;
}

.main .main__btn:hover:after {
    opacity: 1;
    width: 100%;
}

.main .main__btn span {
    font-size: 15px;
    text-transform: uppercase;
    text-align: center;
    position: relative;
    z-index: 1;
    transition: .2s;
}

.main .main__btn:hover span {
    color: var(--primary-color);
}

.row .main__cover {
    margin-bottom: 3em;
}

/* MEDIUM DEVICE */
@media only screen and (max-width:768px) {
    .main .main__desc {
        padding: 1.5em;
    }
}

/* SMALL DEVICE */
@media only screen and (max-width:576px) {
    .main .main__btn {
        display: block;
        max-width: 80%;
        width: 100%;
        margin: 1em auto;
    }
}

/*BREADCRUMB*/
.bread {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 30px 0;
}

.bread__title {
    color: var(--grey);
    font-size: 2em;
    margin: 15px 0 0 0;
}

.bread #breadcrumb * {
    color: var(--grey);
    font-size: 12px;
    vertical-align: baseline;
}

.bread #breadcrumb :is([itemprop="title"], [itemprop="name"]) {
    font-size: 14px;
}

/* ASIDE */
.aside nav::-webkit-scrollbar {
    width: 3px;
}

.aside nav::-webkit-scrollbar-thumb {
    background-color: var(--dark);
}

.aside {
    background-color: var(--primary-color);
    border-radius: 5px 0 0 5px;
    margin: 0;
    box-sizing: border-box;
    padding: 3em;
    position: fixed;
    z-index: 999999;
    height: auto;
    width: 300px;
    right: -300px;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    transition: .5s ease-in-out;
    display: flex;
    flex-flow: column;
    justify-content: space-between;
}

.aside::before {
    content: '\f100';
    font-family: 'FontAwesome';
    width: 40px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px 0 0 5px;
    background-color: var(--primary-color);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: -40px;
    cursor: pointer;
    box-shadow: -2px -2px 5px rgba(0, 0, 0, 0.5);
    transition: .3s;
}

.aside:hover {
    right: 0;
}

.aside:hover::before {
    opacity: 0;
}

.aside a {
    color: #fff;
}

.aside:hover .aside__menu,
.aside:hover .aside__contato {
    animation-name: anima__aside;
    animation-duration: .7s;
    animation-timing-function: ease-in-out;
}

.aside .aside__menu li a {
    display: block;
    padding: 5px;
    margin: 5px 0;
    font-size: 12px;
    border-left: 1.5px solid #fff;
    transition: .3s;
}

.aside .aside__menu li a:hover,
.aside .aside__menu li a.active-menu-aside {
    border-left: 3px solid var(--dark);
    color: var(--dark);
}

.aside .aside__contato {
    margin-top: 10px;
}

.aside .aside__contato a:not(.aside__btn) {
    border-radius: 50%;
    width: 30px;
    height: 30px;
    font-size: 12px;
    margin: 0.5em;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    color: var(--grey);
    box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.5);
    transition: .3s;
}

.aside .aside__contato .aside__btn {
    display: block;
    max-width: 140px;
    width: 100%;
    margin: 1em auto 0 auto;
    background-color: #fff;
    color: var(--grey);
    text-transform: capitalize;
    text-align: center;
    font-size: 13px;
    box-sizing: border-box;
    padding: 1em;
    border-radius: 5px;
    box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.5);
    transition: .3s;
}

.aside .aside__contato a:hover {
    color: #fff;
    background-color: var(--dark);
    transform: translate(2px, 2px);
}

@keyframes anima__aside {
    0% {
        transform: translateX(1000px);
    }

    100% {
        transform: translateX(0);
    }
}

/* =============================== CARD =============================== */

.card--mod-17 {
    padding: 3rem 1.5rem;
    background-color: #fff;
    box-shadow: 0px 2px 5px rgba(34, 34, 34, 0.10);
    border-radius: 5px;
    transition: .3s;
}

.card--mod-17:hover {
    box-shadow: 0px 2px 5px rgba(34, 34, 34, 0.35);
}

.card--mod-17 * {
    text-align: center;
}

.card--mod-17 .card__icon {
    display: block;
    color: var(--primary-color);
}

.card--mod-17 .card__title {
    font-size: 1.14rem;
    color: var(--grey);
    text-transform: uppercase;
}

.card--mod-17 .card__text {
    font-size: 1.1rem;
    color: var(--grey);
}

/* CUSTOM TITLE MODELO 01 */
.title-01 {
    text-align: center;
    font-size: 2.8em;
    color: var(--primary-color);
    font-weight: normal;
}

.title-01 strong {
    font-weight: bold;
    color: var(--dark);
}

/*@CSS@*/


/* =============================== CARD =============================== */

.card--mod-17 {
    padding: 3rem 1.5rem;
    background-color: #fff;
    box-shadow: 0px 2px 5px rgba(34, 34, 34, 0.10);
    border-radius: 5px;
    transition: .3s;
}

.card--mod-17:hover {
    box-shadow: 0px 2px 5px rgba(34, 34, 34, 0.35);
}

.card--mod-17 * {
    text-align: center;
}

.card--mod-17 .card__icon {
    display: block;
    color: var(--primary-color);
}

.card--mod-17 .card__title {
    font-size: 0.95rem;
    color: var(--grey);
    text-transform: uppercase;
}

.card--mod-17 .card__text {
    font-size: 1.1rem;
    color: var(--grey);
}

.size__cliente {
    height: 100px !important;
    border: 1px solid rgba(0, 0, 0, 0.185);
    border-radius: 5px;
    margin: 0px 10px !important;
}

/* CLIENTES */
.carousel-clientes .slick-list {
    width: 95%;
    margin: 0 auto;
}

.carousel-clientes .slick-prev::before {
    content: "❰";
    font-size: 1.5rem;
}

.carousel-clientes .slick-next::before {
    content: "❱";
    font-size: 1.5rem;
}

.carousel-clientes .card__image {
    width: 120%;
    margin: 0 auto;
    aspect-ratio: 1/1;
    object-fit: contain;
    padding: 0;
}

.carousel-clientes .card--clientes {
    position: relative;
    overflow: visible;
    backface-visibility: hidden;
    display: flex !important;
    align-items: center;
    justify-content: center;
    padding: 5px 0;
    cursor: pointer;
    box-shadow: 0px 0px 5px #999;
    margin: .5rem;
    max-width: 300px;
    aspect-ratio: 1/1;
    border-radius: 16px;
    background-color: #fff;
    height: 140px;
}

.hover:hover {
    transform: translateY(10px);
}

/* =============================== MODAL =============================== */

.card--modal .modal__cover {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.card--modal .modal__link {
    display: block;
    background-color: var(--primary-color);
    box-sizing: border-box;
    padding: 1.25em;
    margin: 0;
    color: #fff;
    text-align: center;
    font-size: 16px;
    transition: .3s;
}

.card--modal .modal__link:hover {
    background-color: var(--dark);
}

.modal-content {
    width: 80%;
    padding: 1.75em;
}

.btn--green {
    background-color: var(--primary-color);
    position: absolute;
    right: 48%;
    bottom: 87%;
    color: #FFF;
    border-radius: 100%;
    padding: 15px 24px;
    font-size: 34px;
}

/* =============================== SEÇÃO CONTATO =============================== */
/* FORMULÁRIO */
.contato .contato__form {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.contato .contato__form :is(input, textarea, select) {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 1em;

    width: 100%;
    margin: 0.8em 0;

    border: 2px solid #ccc;

    font: 12px var(--primary-font);
    color: var(--grey);

    -webkit-transition: .3s;
    transition: .3s;

    outline: none;
    text-align: left;
}

.contato .contato__form select {
    padding: 0.9em;
}

.contato .contato__form :is(input, textarea, select):focus {
    border-color: var(--grey);
    outline: none;
}

.contato .contato__form label,
.contato .contato__form option,
.contato .contato__form :is(input, textarea)::placeholder {
    font: 12px var(--primary-font);
    color: var(--grey);
}

.contato .contato__form label {
    text-transform: uppercase;
}

/* BOTÃO SUBMIT */
.contato .contato__form .ir {
    display: block;
    position: relative;

    max-width: 242px;
    width: 100%;
    height: 50px;

    border: 2px solid var(--grey);

    transition: .3s;
}

.contato .contato__form .ir:hover {
    border-color: var(--primary-color);
}

.contato .contato__form .ir:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 1%;
    height: 100%;
    background-color: var(--primary-color);
    transition: .3s;
    z-index: 0;
    opacity: 0;
}

.contato .contato__form .ir:hover:before {
    width: 100%;
    opacity: 1;
}

.contato .contato__form .ir label,
.contato .contato__form .ir [type="submit"] {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    width: 100%;
    margin: 0;
    text-align: center;
}

.contato .contato__form .ir label {
    color: var(--grey);
    font-size: 14px;
    font-weight: bold;
}

.contato .contato__form .ir:hover label {
    color: #fff;
}

.contato .contato__form .ir [type="submit"] {
    background-color: transparent;
    outline: none;
    border: none;
}

/* INFORMAÇÕES DE CONTATO */

.contato .contato__item {
    display: block;
    width: 100%;
}

.contato .contato__icon {
    width: 65px;
    height: 65px;
    border-radius: 100%;
    font-size: 1.8em;
    background-color: var(--primary-color);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 1em;
    float: left;
    transition: .3s;
    outline: 2px solid transparent;
}

.contato .contato__icon:hover {
    background-color: var(--dark);
    outline-color: var(--dark);
    outline-offset: 0.3em;
}

.contato .contato__info {
    float: left;
    padding: 0 0 2rem 1.5rem;
}

.contato .contato__info strong {
    display: block;
    margin-bottom: 1em;
    font: bold 15px var(--primary-font);
    text-transform: uppercase;
    color: var(--primary-color);
}

.contato .contato__info :is(span, a):not(.social__link, .roll) {
    display: block;

    color: var(--grey);
    font-size: 13px;
    line-height: 22px;
    transition: .3s;
}

.contato .contato__info a:hover {
    color: var(--primary-color);
}

/* ÍCONES REDES SOCIAIS */

.contato .contato__social {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 5px;
}

.contato .social__link {
    width: 35px;
    height: 35px;
    border: 2px solid #ccc;

    overflow: hidden;
    position: relative;
    transition: .3s;
}

.contato .social__link .roll {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 100%;
    height: 100%;
    text-align: center;
    color: var(--grey);
    font-size: 1rem;


    position: absolute;
    top: 50%;
    left: 50%;
    transition: all .5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.contato .social__link:hover {
    border-color: var(--primary-color);
    background-color: var(--primary-color);
    color: #fff;
}

.contato .social__link:hover .roll {
    color: #fff;
}

.contato .social__link .roll:first-child {
    transform: translate(-50%, -50%);
}

.contato .social__link .roll:last-child {
    transform: translate(-50%, 100%);
}

.contato .social__link:hover .roll:first-child {
    top: 0;
    transform: translate(-50%, -100%);
}

.contato .social__link:hover .roll:last-child {
    transform: translate(-50%, -50%);
}


/* EXTRA SMALL DEVICE */

@media only screen and (max-width: 420px) {

    .contato .contato__icon,
    .contato .contato__info {
        float: none;
        margin: 0 auto;
        padding: 1rem;
        text-align: center;
    }

    .contato .contato__social {
        justify-content: center;
    }

}

/* ===============================  END SEÇÃO CONTATO =============================== */


/* =============================== BLOG =============================== */

.grid-blog {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 20px;
    margin-top: 3rem;
}

.blog__item {
    width: 100%;
    position: relative;
    overflow: hidden;
    border-radius: .25rem;
    margin-top: 10px;
}

.blog__item:first-of-type {
    grid-column: 1/ span 2;
}

.blog__item:nth-of-type(0n+2) {
    grid-column: 3/ span 3;
}

.blog__item:nth-of-type(0n+3) {
    grid-row: 2;
    grid-column: 1/ span 1;
    top: -50px;
}

.blog__item:nth-of-type(0n+4) {
    grid-row: 2;
    grid-column: 2/ span 3;
}

.blog__item:nth-of-type(0n+5) {
    grid-row: 3;
    grid-column: 1/ span 2;
}

.blog__item:nth-of-type(0n+6) {
    grid-row: 3;
    grid-column: 3/ span 3;
    top: -50px;
}

.blog__cover {
    width: 100%;
    border-radius: .25rem;
    height: 300px;
    object-fit: cover;
    transition: .3s;
}

.blog__item:hover .blog__cover {
    transform: scale(1.05);
}

.blog__description {
    width: 90%;
    margin: 0 auto;
    position: relative;
    top: -50px;
    background-color: #fff;
    border-radius: .25rem;
    box-sizing: border-box;
    padding: 25px;
    box-shadow: 2px 2px 2px rgba(0, 0, 0, .3);
    text-align: left;
}

.blog__description:hover {
    transform: translateY(20px);
    transition: 0.8s;
}

.blog__title {
    color: var(--dark);
    font-size: 18px;
}

.blog__text {
    text-align: left;
    font-size: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog__btn {
    box-sizing: border-box;
    padding: 15px 0;
    font-size: 12px;
    color: var(--dark);
    letter-spacing: .3px;
    font-weight: bold;
    transition: .3s ease;
}

.blog__btn:hover {
    color: var(--primary-color);
    letter-spacing: 1px;
}

/* BLOG */
.blog-content {
    padding: 150px 50px 50px 50px;
}

.blog-card {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 25px 25px 0 25px;
    background-color: #f9f9f9;
}

.blog-card:nth-child(odd) {
    position: relative;
    top: -100px;
}

.blog-card .blog-card__cover {
    object-fit: contain;
}

.blog-card .blog-card__info {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 35px;
    width: 95%;
    margin: 0 auto;
    -webkit-box-shadow: 2px 0 5px rgba(0, 0, 0, .50);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 10%);
    background-color: #fff;
    position: relative;
    top: -25px;
    transition: 0.5s;
}

.blog-card .blog-card__info:hover {
    top: -45px;
}

.blog-card .blog-card__date {
    font: 400 12px var(--primary-font);
    color: var(--dark-grey);
}

.blog-card .blog-card__title {
    font: 600 18px var(--primary-font);
    color: var(--dark);
    text-transform: uppercase;
    margin: 0;
}

.blog-card .blog-card__text {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin: 30px 0;
}

.blog-card .blog-card__btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    font: 400 14px var(--primary-font);
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 10px 15px;
    border-radius: 10px;
    transition: .3s;
}

.blog-card .blog-card__btn:hover {
    background-color: var(--primary-light-color);
}

.blog-card__image img {
    display: block;
    margin: 0 auto;
    width: 100%;
    max-height: 650px;
}

/* MEDIUM DEVICE */
@media only screen and (max-width: 768px) {
    .blog-card .blog-card__info {
        padding: 1.5em;
    }

    .blog-card .blog-card__title {
        font-size: 1.2em;
    }

    .blog-card .blog-card__text {
        margin: 0.5em 0;
    }
}

/* SMALL DEVICE */
@media only screen and (max-width: 576px) {
    .blog-content {
        padding: 1.5em;
    }

    .blog-content .grid {
        grid-template-columns: 100%;
    }

    .blog-card:nth-child(odd) {
        position: static;
    }

    .planos-gestao-suporte-ti {
        grid-template-columns: 1fr;
    }

    .quem-somos-home {
        justify-content: center;
    }

    .container-card h2 {
        font-size: 15px !important;
    }
}

/* EXTRA SMALL DEVICE */
@media only screen and (max-width: 320px) {
    .blog-card {
        padding: 0.8em;
    }

    .blog-card .blog-card__title {
        font-size: 0.7em;
    }
}

/* MEDIUM DEVICE */
@media only screen and (max-width: 768px) {
    .grid-blog {
        display: block;
    }

    .blog__item {
        position: static;
        width: 90%;
        margin: 10px auto;
    }
}

.video-sobre-nos video {
    max-width: 100%;
    width: 100%;
    bottom: 0;
}

/* EXTRA LARGE DEVICE */
@media only screen and (max-width: 1024px) {
    .logo {
        width: 100%;
    }
}

.servicos {
    gap: 25px;
}

.servicos .card {
    width: 31%;
}

@media only screen and (max-width: 992px) {
    .servicos .card {
        margin: unset;
    }
}

@media only screen and (max-width: 992px) {
    .servicos .card {
        width: 36%;
    }
}

@media only screen and (max-width: 420px) {
    .servicos .card {
        width: 80%;
    }
}

.bg-dark {
    background-color: #EC8750;
    transition: background .3s, border .3s, border-radius .3s, box-shadow .3s;
    margin-top: 0em;
    padding: 2em 0em 0em 0em;
}

.bg-dark h2 {
    font-size: 55px;
    font-weight: 400;
    text-transform: uppercase;
    line-height: 1.3em;
    letter-spacing: -2px;
    color: #78370F;
}

.bg-dark p {
    color: #fff;
    font-size: 19px;
}

.bg-dark .img-bg {
    padding: 2em 0em 0em 0em;
    background-image: url(<?=$url?>imagens/masking-5.png);
    background-position: top left;
    background-repeat: no-repeat;
    background-size: 50% auto;
    position: absolute;
}

.bg-dark .img-bg img {
    /* -webkit-mask-image: url(<?=$url?>imagens/masking-5.png);
    -webkit-mask-size: cover;
    -webkit-mask-position: center center; */
    transform: skewX(15deg);
    background-size: cover;
}

.sobre-transform__image {
    -webkit-mask-image: url('<?=$url?>imagens/masking-5.png');
    mask-image: url('<?=$url?>imagens/masking-5.png');
    -webkit-mask-size: 100%;
    mask-size: 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
}

.sobre-transform {
    top: 16%;
}

/* MEDIUM DEVICE */
@media only screen and (max-width: 768px) {
    .topicos img {
        width: 95%;
    }
}

/* SMALL DEVICE */
@media only screen and (max-width: 576px) {
    .topicos img {
        display: block;
        margin: 0 auto !important;
        width: 65%;
    }
}

.topicos>div {
    margin-bottom: 50px;
}

.mapa-completo {
    width: 100%;
}

.sobre-empresa {
    display: grid;
    grid-template-columns: 1fr .75fr;
    gap: 25px;
    align-items: center;
    padding: 1em;
}

@media screen and (max-width: 768px) {
    .sobre-empresa {
        grid-template-columns: 100%;
    }
}


/* =============================== ACCORDION =============================== */

.accordion .accordion__button {
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
    padding: 15px 15px 15px 0px;
    margin: 5px 0;
    border-bottom: 1px solid #ccc;
    font-size: 16px;
    color: var(--dark);
    cursor: pointer;
    transition: 0.3s;
}

.accordion .accordion__button:after {
    content: '\f103';
    font-family: 'FontAwesome';
    color: var(--dark);
    transition: .3s;
}

.accordion .accordion__button.accordion--active:after {
    transform: rotate(180deg);
}

.accordion .accordion__button+* {
    padding: 5px 15px;
}


.palavra-presidente {
    margin: 3em;
}

.palavra-presidente h2 {
    margin-top: 0;
}

@media screen and (max-width: 576px) {
    .palavra-presidente__image {
        display: block;
        margin: 0 auto !important;
    }
}


/* EXTRA SMALL DEVICE */
@media only screen and (max-width: 480px) {
    .servicos .card {
        width: 100%;
    }
}

.melhorar-qualidade-sono ul {
    list-style-type: "- ";
}

.bread--mpi {
    margin: 1em auto;
    text-align: center;
}

.img_border {
    height: 300px;
    margin: 10px;
    border-radius: 10px;
    border: 8px solid white;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 0.0625em 0.0625em, rgba(0, 0, 0, 0.25) 0px 0.125em 0.5em, rgba(255, 255, 255, 0.1) 0px 0px 0px 1px inset;
    user-select: none;
    -webkit-user-drag: none;
}

.card_integridade {
    box-shadow: rgba(0, 0, 0, 0.25) 0px 0.0625em 0.0625em, rgba(0, 0, 0, 0.25) 0px 0.125em 0.5em, rgba(255, 255, 255, 0.1) 0px 0px 0px 1px inset;
    border-radius: 10px;
    overflow: hidden;
}