/* =============================== HEADER =============================== */

header {
    background-color: #fff;
}

.header-desktop,
.header-mobile {
    background-color: var(--header-bg) !important;
}

header .logo img {
    display: block;
    margin: 1.75rem auto;
    width: 50%;
    max-width: 200px;
    height: auto;
}

/* TOPO */
header .topo {
    background-color: var(--primary-color);
    padding: 8px 0;
    font-size: 13px;
    color: #fff;
}

header .topo :is(span, a) {
    font: 13px var(--primary-font);
    color: #fff;
    transition: .3s;
}

header .topo a:hover {
    opacity: 0.75;
}


/* MENU */
header #menu>ul {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    gap: 4px;
}

header #menu>ul>li {
    margin: 0;
}

header #menu>ul>li>a {
    color: var(--header-cl);
    padding: 11px 15px;
}


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

header #menu>ul>li.dropdown [class*='sub-menu'] {
    background-color: var(--header-bg-subMenu);
    height: auto;
    max-height: 300px;
    overflow-y: auto;
}

header #menu>ul>li.dropdown [class*='sub-menu']>li:hover>a,
header #menu>ul>li.dropdown [class*='sub-menu']>li>a.active-menu-topo {
    background-color: #fff;
    color: var(--primary-color);
}

/* MENU DROPDOWN ARROWS */

header #menu>ul>li.dropdown:not([data-icon-menu])>a::after {
    content: "\f107";
    font-family: "FontAwesome";
    color: var(--grey);
    margin-left: 4px;
    font-size: 12px;
    transition: 0.3s;
}

header #menu>ul>li.dropdown:not([data-icon-menu])>a.active-menu-topo::after,
header #menu>ul>li.dropdown:not([data-icon-menu]):hover>a::after {
    color: #FFF;
}

/* ASIDE */
.aside .aside__btn,
.aside .aside__menu h2,
.aside .aside__contato h2 {
    font-size: 14px;
    background-color: var(--primary-color);
    padding: 10px;
    display: block;
    transition: .3s;
    color: #fff;
}

.aside .aside__btn {
    color: #fff;
    text-align: center;
    border-radius: 3px;
}

.aside .aside__btn:hover {
    background-color: var(--dark);
}

.aside .aside__menu h2 a {
    color: #fff;
}

.aside .aside__menu nav ul li {
    border-left: 2px solid var(--primary-color);
    margin: 10px 0;
    padding: 5px;
    transition: .2s;
}

.aside .aside__menu nav ul li a {
    color: var(--dark);
    font-size: 12px;
    border-left: 0;
    padding: 0;
    transition: .3s;
}

.aside .aside__menu nav ul li:hover {
    border-left-color: var(--dark);
    background-color: #f0f0f0;
}

.aside .aside__menu nav ul li a.active-menu-aside {
    color: var(--primary-color);
    font-weight: bold;
}

.aside .aside__contato h2 {
    text-align: center;
}

.aside .aside__contato a {
    color: var(--dark);
    text-align: center;
    display: block;
    margin: 10px;
    transition: all .2s ease;
}

.aside .aside__contato a:hover {
    color: #5492c3;
}

.aside .fb-page {
    display: block;
    margin-bottom: 25px;
}


/* FOOTER */
footer {
    background-color: var( --footer-bg);
}

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

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

footer .address a:hover {
    color: var(--footer-cl-hover);
}

footer .footer__menu nav ul {
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
}

footer .footer__menu nav ul li {
    display: inline;
    padding-left: 10px;
}

footer .footer__menu nav ul li a {
    color: var( --footer-cl);
    font-size: 13px;
    transition: .3s;
}

footer .footer__menu nav ul li a:hover {
    color: var(--footer-cl-hover);
}

footer .social {
    margin-top: 1.75em;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px
}

footer .social .social__icons {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    border-radius: 5px;
    font-size: 18px;
    background-color: var(--primary-color);
    color: #fff;
    text-align: center;
    transition: .3s;
}

footer .social .social__icons:hover {
    background: #fff;
    color: var(--primary-color);
}

/* LARGE DEVICE */
@media only screen and (max-width: 992px) {
    footer .address * {
        text-align: center;
    }

    footer .footer__menu nav ul {
        align-items: center;
        justify-content: center;
    }

    footer .social {
        justify-content: center;
    }
}

/* MEDIUM DEVICE */
@media only screen and (max-width: 768px) {
    footer .footer__menu nav ul li {
        display: block;
        padding: 0;
    }

    footer .footer__menu nav ul li a {
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        padding: 14px;
        display: block;
        margin: 0 auto;
    }
}

/* SMALL DEVICE */
@media only screen and (max-width: 576px) {
    footer .footer__menu nav ul {
        flex-direction: column;
        width: 100%
    }

    footer .footer__menu nav ul li {
        max-width: 80%;
        width: 100%
    }

    footer .footer__menu nav ul li a {
        width: 100%;
        margin: 5px auto;
        border: 1px solid var(--primary-color);
        color: #fff;
        background-color: var(--primary-color);
    }
}

/* DESTAQUES */

.destaques-mpi {
    margin: 32px 0;
}

.destaques-mpi__title {
    margin: 0 0 30px 0;
    color: var(--primary-color);
}

.destaques-mpi__title span {
    color: var(--dark);
}

/* FIM DESTAQUES */

/* CLIENTES */

.clientes {
    padding: 32px 0;
}

.clientes__title {
    margin: 0 0 30px 0;
}

.clientes__item {
    display: flex !important;
    justify-content: center;
    align-items: center;
    width: 100%;
    aspect-ratio: 1/1;
    padding: 8px;
    margin: 0 10px;
    background-color: #fff;
}

.clientes__carousel {
    padding: 0 16px;
}

.clientes__image {
    max-width: 100%;
    max-height: 100%;
}

/* FIM CLIENTES */



.category__keyword {
    padding: 1%;
    border: solid 1px #000;
    width: auto;
    border-radius: 10px;

}

.category__list__keywords {
    margin-top: 5%;
    margin-bottom: 5%;
}

.category__list__keywords h2 {
    margin-bottom: 3%;
}

.category__container__keywords {

    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 20px;
}


/* WhatsApp*/

.whatsapp {
    position: fixed;
    right: 15px;
    z-index: 9999;
    bottom: 80px;
}

.whats_msg {
    display: flex;
    align-items: center;
    background-color: rgb(255 255 255);
    border: 1px solid #ccc !important;
    border-radius: 11px;
    margin-right: 100px;
    margin: 10px 0;
    position: relative;
    box-shadow: 4px 3px 3px #4f46461c;
}

.whatsapp p.campo_vazio {
    text-align: center;
    font-size: 13px;
    font-weight: 600;
}

.whats_msg input {

    border: none;
    outline: none;
    border-radius: 0.65rem;
}

input#TelWhats {
    width: 100%;
    font-size: 18px;
    padding: 8px;
    text-align: center;
    font-weight: bold;
    background-color: rgb(255 255 255 / 0%);
    color: #464b4e;
}

input#TelWhats::placeholder {
    text-align: center;
    color: #979797;
}

.modal-whatsapp {
    position: absolute;
    right: 70px;
    background-color: rgb(234 230 223);
    width: 300px;
    bottom: 20px;
    z-index: 10;
    text-align: center;
    display: none;
    border: transparent;
    border-radius: 17px;
    color: #474747;
    font-weight: bold;
    -webkit-box-shadow: 0px -1px 24px -8px rgba(133, 133, 133, 1);
    -moz-box-shadow: 0px -1px 24px -8px rgba(133, 133, 133, 1);
    box-shadow: 0px -1px 24px -8px rgba(133, 133, 133, 1);
    animation: OpenWhats 0.5s ease-out;
}

.modal-whatsapp .closeModal {
    animation: closeModal 0.4s ease-out;
}

@keyframes closeModal {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

@keyframes OpenWhats {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}



.modal-whatsapp::after {
    content: "";
    width: 0;
    height: 0;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-left: 15px solid #eae6df;
    position: absolute;
    bottom: 1px;
    right: -7px;
    -webkit-box-shadow: 0px -1px 24px -8px rgba(133, 133, 133, 1);
    -moz-box-shadow: 0px -1px 24px -8px rgba(133, 133, 133, 1);
    box-shadow: 0px -1px 24px -8px rgba(133, 133, 133, 1);
}


#modal_tremer {
    animation: tremer .2s;
    animation-iteration-count: 3;
}


@keyframes tremer {
    0% {
        right: 70px;
    }

    25% {
        right: 72px;
    }

    50% {
        right: 70px;
    }

    75% {
        right: 78px;
    }

    100% {
        right: 70px;
    }
}


.modal-whatsapp ol {
    list-style-type: none;
    max-height: 350px;
    overflow-y: auto;
}

.modal-whatsapp ol a {
    text-decoration: none;
    color: #5a5a5a;
}

.modal-whatsapp .whatsapp-info {
    padding: 20px;
    border-top: #f4f4f4 solid 0.5px;
}

.modal-whatsapp .whatsapp-info span {
    display: flex;
    padding: 5px;
    align-items: center;
    justify-content: center;

}

.wp-loading {
    display: none;
}

.modal-whatsapp .whatsapp-header img {
    border: transparent;
    border-radius: 100px;
    width: 40px;
    margin-right: 15px;
    height: 40px;
    background-color: #fff;
    object-fit: cover;
}



.modal-whatsapp .whatsapp-header {
    background-color: rgb(0 128 105);
    border-radius: 17px 17px 0px 0px;
    padding: 10px;
    font-weight: 200;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-whatsapp .whatsapp-header h3 {
    color: #FFF;
    font-size: 0.8rem;
}

.modal-whatsapp .btn_modal_WhatsApp:hover {
    background-color: #103f24;
}

.modal-whatsapp .description {
    font-size: 1.2rem;
}

.modal-whatsapp p {
    margin: 0;
    padding: 0;
}

.modal-whatsapp .btn_modal_WhatsApp {
    padding: 12px 49px;
    border: transparent;
    border-radius: 10px;
    margin-top: 7px;
    background-color: #25d366;
    color: #fff;
    font-size: 15px;
    width: 100%;
    /* font-weight: bold; */
}

.modal-whatsapp form {
    padding: 17px 16px !important;
    display: flex;
    background-color: rgb(234 230 223);
    border-radius: 10px 10px;
    flex-direction: column;
    background-image: url();
}

.close_modal_Whats {
    position: absolute;
    right: 7px;
    top: 10px;
    cursor: pointer;
}

.btn-whatsapp span {
    position: absolute;
    background-color: rgb(221, 5, 5);
    padding: 5px;
    color: #fff;
    border: transparent;
    border-radius: 20px;
    top: -8px;
    font-size: 12px;
    right: 5px;

}



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

    .whatsapp {
        position: fixed;
        right: 10px;

    }

    .modal-whatsapp {
        right: 20px;
        bottom: 60px;
    }

    .modal-whatsapp::after {
        content: "";
        width: 0;
        height: 0;
        border-top: 0px solid transparent;
        border-bottom: 0px solid transparent;
        border-left: 0px solid transparent;
    }
}


@keyframes pulsate {
    0% {
        transform: scale(1);
        box-shadow: 0 0 10px rgba(238, 79, 79, 0.553);
    }

    50% {
        transform: scale(1.1);
        box-shadow: 0 0 20px rgba(239, 26, 26, 0.623);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 10px rgba(239, 42, 42, 0.458);
    }
}

.btn-whatsapp span {
    animation: pulsate 1s infinite;
}

/* Fim*/


div.header-mobile {
    display: none;
}

address.header-mobile-contact {
    display: none;
}

@media only screen and (max-width: 720px) {
    div.header-desktop {
        display: none;
    }

    div.header-mobile {
        display: block;
    }

    address.header-mobile-contact {
        display: flex;
    }
}


#breadcrumb ol {
    display: flex;
    gap: 6px;
    list-style: none;
    flex-wrap: wrap;
}



address {
    p {
        margin: 0;
        padding: 0;
    }

    .address__item {
        font-size: 1rem;
    }

    a.fone__item {
        font-size: 1rem;
        margin-bottom: 1.4%;
    }

    span.email__item {
        font-size: 1rem;
        margin-bottom: 1.4%;
    }

}

.btn {
    margin-top: 15px;
    background-color: transparent;
    border: 1px solid white !important;
    color: white !important;
    width: 171px;
    transition: .4s !important;

}

.btn:hover {
    color: var(--primary-color) !important;
}

/* banner */
.title-banner b {
    font-weight: 500;
}

.title-banner {
    color: white;
    font-weight: 200;
    font-size: 3vw;
}

.text-banner {
    color: white;
    font-weight: 100;
}

.container-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    align-content: center;
    flex-wrap: nowrap;
    flex-direction: row;
    position: relative;
    z-index: 0;
}

.container-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 82%;
    height: 100%;
    z-index: 1;
    background-color: var(--banner-fundo);

    background: linear-gradient(0deg, var(--banner-fundo) 0%, hsl(191deg 50% 55% / 0%) 100%);

    background: -moz-linear-gradient(0deg, var(--banner-fundo) 0%, hsl(191deg 50% 55% / 0%) 100%);

    background: -webkit-linear-gradient(0deg, var(--banner-fundo) 0%, hsl(191deg 50% 55% / 0%) 100%);

    filter: progid: DXImageTransform.Microsoft.gradient(startColorstr="#E50028", endColorstr="#FFFFFF", GradientType=1);
}



.content-banner {
    z-index: 2;
    position: absolute;

}

@media (max-width: 768px) {
    .content-banner {
        padding-inline: 7vw;
    }

    .container-banner::before {
        width: 100%;


        background: linear-gradient(35deg, var(--banner-fundo) 0%, hsl(191deg 50% 55% / 0%) 100%);

        background: -moz-linear-gradient(35deg, var(--banner-fundo) 0%, hsl(191deg 50% 55% / 0%) 100%);

        background: -webkit-linear-gradient(35deg, var(--banner-fundo) 0%, hsl(191deg 50% 55% / 0%) 100%);

        filter: progid: DXImageTransform.Microsoft.gradient(startColorstr="#629BCB", endColorstr="#FFFFFF", GradientType=1);
    }

    .title-category-geral {
        font-size: 1.2rem !important;
        margin-bottom: 17% !important;
    }
}

/* fim banner */


/* quem somos */

.image-quem-somos {
    box-shadow: 0 0 0 var(--primary-color);
    transition: .6s;
}

.image-quem-somos:hover {
    box-shadow: -20px -20px 0 var(--primary-color);
}

/* quem somos */
.text-small {
    font-size: 15px;
    font-weight: 600;
    margin: 0;
}

.title-quem-somos {
    margin: 0;
    font-weight: 300;
    color: var(--primary-color);
}

.container-quem-somos {
    margin-top: 100px;
}

.container-text-quem-somos {
    padding: 2rem;
    margin-left: 6rem;
    flex: 1;
}

.image-quem-somos {
    width: 100%;
    height: auto;
    max-height: 436px;
    object-fit: cover;
}

.container-image-quem-somos-geral {
    flex: 1;
    display: flex;
    justify-content: center;

}

@media (max-width: 768px) {
    .image-quem-somos:hover {
        box-shadow: -2px 13px 0 var(--primary-color);
    }

    .container-quem-somos {
        margin-top: 30px;
    }

    .image-quem-somos {
        padding: 2vw;
    }

    .container-quem-somos {
        flex-direction: column;
    }

    .container-text-quem-somos,
    .container-image-quem-somos-geral {
        padding: 1rem 0;
    }
}

@media (max-width: 480px) {
    .text-small {
        font-size: 12px;
    }

    .title-quem-somos {
        font-size: 1.5rem;
    }

    .text-quem-somos {
        font-size: 0.9rem;
    }

    .container-text-quem-somos {
        margin-left: 0px;
        padding: 1.5rem;
    }
}


/* fim quem somos */



/* categoria */

.owl-carousel .owl-item img {
    height: 100%;
    object-fit: cover;

}

.container-category-geral {
    margin-top: 100px;
    margin-bottom: 100px;
}

.title-category-geral {
    font-size: 30px;
    margin-bottom: 6%;
    text-align: center;
    color: var(--primary-color);
}



.container-effect-title {
    display: flex !important;
    flex-direction: column;
    position: absolute;
    bottom: 0px;
    z-index: 9;
    justify-content: center;
    background: #00000047;
    backdrop-filter: blur(1.5px);
    -webkit-backdrop-filter: blur(1.5px);
    transition: height 0.5s ease;
    width: 100%;
    height: 47px;
    padding: 7px;
    align-content: center;
    align-items: center;
    gap: 10px;
}

.title-category {
    color: white;
    margin: 0 !important;
    font-size: 20px;
}

.container-category-body {
    position: relative;
    /* Define posição relativa para .container-category-body */

    height: 300px;
    max-height: 300px;

}

.container-category-body figure {
    width: 100%;
    height: 100%;
}

.container-category-body:hover .container-effect-title {
    height: 100%;
    /* Altera a altura do .container-effect-title para 100% ao passar o mouse */

}

.container-category-body .container-effect-title {
    transition: all .4s;

}

.btn-category {

    color: var(--primary-color);
    background: white;
    border-radius: 5px;
    padding-block: 4px;
    padding-inline: 15px;
    font-weight: normal !important;
    text-decoration: none !important;
    transition: all .3s;
    opacity: 0;
    display: none;
}

.btn-category:hover {
    color: white;
    background: var(--primary-color);
}

.container-category-body:hover .container-effect-title .btn-category {
    opacity: 1;
    display: block;
}



@-webkit-keyframes fadeinout {

    0%,
    50% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}





.owl-carousel .owl-nav {
    position: absolute;
    top: 108%;
    right: -77px;
    transform: translateY(-50%);
    width: 113%;
    display: flex;
    justify-content: space-between;
    z-index: 1000;
}

.owl-theme .owl-nav [class*=owl-] {
    outline: none;
    background: none !important;
    position: relative;
    bottom: 90px;
}

.owl-theme .owl-nav [class*=owl-]:hover {
    background: none !important;
}

.owl-carousel .owl-nav .owl-prev,
.owl-carousel .owl-nav .owl-next {
    background-color: rgba(255, 255, 255, 0.5);
    padding: 10px;
    border-radius: 5px;
    font-size: 20px;
}

.owl-carousel .owl-nav .owl-prev {
    left: 20px;
}

.owl-carousel .owl-nav .owl-next {
    right: 20px !important;
}

.arrow-right {
    rotate: 180deg;
}

@media (max-width: 768px) {

    .owl-carousel .owl-nav {
        position: absolute;
        top: 50%;
        right: 0;
        transform: translateY(-50%);
        width: 100%;
        display: flex;
        justify-content: space-between;
        z-index: 1000;
    }
}

/* fim categoria */


/* form */
.image-form {
    position: relative;
    border-radius: 10px;
    object-fit: cover;
}


.container-btn-form {
    display: flex;
    justify-content: flex-end;
}

.btn-form {
    background-color: transparent;
}

.form-group {
    margin-top: 16px;

}

.form-control {
    color: white !important;
    background-color: #000000a1 !important;
    border: none;
    border-radius: 5px;
    width: 100%;
    padding: 12px;
    margin: 0;

}

input.form-control:focus {
    color: #fff !important;
}

textarea.form-control:focus {
    color: #fff !important;
}

.g-recaptcha {
    display: none;
}

.container-form-home textarea {
    margin-bottom: 5%;
}

.form__obrigatory {
    color: white;
}

.form-control:focus {
    color: var(--primary-color) !important;
}

.form-control::placeholder {
    color: rgb(190, 190, 190) !important;
    opacity: 1;
}

.form-control::-webkit-input-placeholder {
    color: white;
}

.form-control::-moz-placeholder {
    color: white;
}


.form-control:-ms-input-placeholder {
    color: white;
}


.form-control:-moz-placeholder {
    color: white;
}

.double-input {
    gap: 15px;
}

.title-form {
    color: white;
    font-weight: 400;
    margin: 0;
}

.text-form {
    color: white;
    font-weight: 200;
    margin: 0;
}

.container-form-image-geral {
    background-color: var(--primary-color);
    gap: 50px;
    padding: 5rem;
    height: 570px;

}

.container-form {
    width: 100%;

}



/* fim form */



/* prova social */

.container-prova-social-geral {
    margin-top: 150px;
    margin-bottom: 100px;
}

.name-quote {
    display: flex;
    position: absolute;
    text-align: center;
    z-index: 0;
    align-items: center;
    justify-content: center;
    top: 0;
    transform: translateY(5px);
    left: 57px;
}

.title-name-prova-social {
    color: white;
    font-size: 20px;
    margin: 0;
}

.text-prova-social {
    color: white;
    text-align: center;
    font-weight: 400;
    font-size: 12px;
    margin-top: 50px;
}

#owl-demo-prova-social .text-prova-social {
    overflow-y: auto;
}

.icon-quote {
    position: relative;
    transform: translate(-50px, 10px);
    left: 0;
    width: 23% !important;
    /* max-width: 65px; */
    height: 50px !important;
    object-fit: contain !important;
}

.icon-star {
    width: 150px !important;
    margin-top: 15px;
    object-fit: contain !important;
    height: auto !important;
}

.container-prova-social-body {
    padding-inline: 2rem;
    background-color: var(--prova-social-bg);
    padding-block: 2rem;
    gap: 10px;
    height: 290px;
    max-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    align-content: center;
}


/* fim prova social */



/* FOOTER */
.itens-menu-footer {
    cursor: pointer;
    transition: .3s;
}

.itens-menu-footer:hover {
    color: var(--primary-color);
    font-weight: 600;
}

#owl-demo-prova-social svg {
    fill: var(--prova-social-cl);
}

#owl-demo-prova-social .text-prova-social {
    color: var(--prova-social-cl);
}

.container-icon-footer {
    margin-top: 4px;
}

.stick-footer-vertical {
    height: 150px;
    border: 1px solid #ffffffad;
}

.title-endereco {
    margin-bottom: 10px;
}

.container-addrees {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 20px;
    width: auto;
}

.end span {
    color: white;
    font-weight: 500;

}

.end p {
    font-weight: 300;
    color: white;
    transition: .3s ease;
    font-size: 12px;
    text-align: left;
    margin: 0;

}

.container-addrees .end span {
    margin-bottom: 10px;
}

.ancora-end {
    text-decoration: none !important;


}

.ancora-end:hover p {
    color: white;
    font-weight: 600;
}


.service span {
    color: white;
    font-weight: 500;

}

.service p {
    font-weight: 300;
    color: white;
    font-size: 13px;
    margin: 0;
}

.body-footer {
    padding: 52px;
    gap: 40px;
}

footer {
    background-color: var( --footer-bg);
}

footer .address :is(a, span) {
    font-size: 12px !important;
}

.container-end-rede-social {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.container-contact-footer .address {
    display: flex;

    flex-direction: column;
}

.container-contact-footer span {
    font-weight: 500;
    color: white;

}

.contact-footer p {
    font-weight: 300;
    color: white;
}


.contact-footer {
    margin-bottom: 9px;
    gap: 5px;
    text-decoration: none !important;

}

.contact-footer:hover i,
.contact-footer:hover p {
    color: wheat;
}


.contact-footer i {
    color: white;
}

.whats-tel-footer .fa-whatsapp {
    color: white;
}

.social-media span {
    margin-bottom: 10px;
    font-weight: 500;
    color: white;
}

.container-social-medias-icons {
    margin-top: 10px;
    gap: 10px;
}

.icon-social-media i {
    color: white;
    font-size: 23px;
}

.menu-footer span {
    font-weight: 500;
    color: white;

}

.menu-footer ul {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.menu-footer ul li a {
    font-size: 12px;
    color: white;
    font-weight: 100;
}

.menu-footer ul li a:hover {
    color: white;
    font-weight: 600;
}

.ul-menu-footer {
    margin-top: 10px;
}

.ul-menu-footer li {
    color: white;
    font-weight: 300;
    margin-bottom: 10px;
    font-size: 12px;
}

.image-logo-white {
    width: 160px;
}




@media (max-width: 768px) {

    .end p {
        text-align: center;
    }

    .container-addrees {
        align-items: center;
    }

    .container-form-image-geral {
        flex-direction: column;
        padding: 1rem;
        height: auto;
    }

    .image-form {
        position: static;
        width: 100%;
        max-width: 100%;
    }

    .container-form {
        width: 100%;
        position: static;
        left: 25%;
    }


    .menu-mobile .navbar-nav {
        align-items: center;
    }

    .top-header {
        flex-direction: column;
    }

    .container-category-geral {
        margin-top: 40px;
        margin-bottom: 70px;
    }

    .title-banner {
        font-size: 1.5rem;
    }

    .container-banner {
        height: 403px;
    }

    .service {
        text-align: center;
    }

    .menu-footer {
        text-align: center;
    }

    .copyright-busca {
        flex-direction: column;
        gap: 10px;
    }

    .container-social-medias-icons {
        justify-content: center;
    }

    .contact-footer {
        justify-content: center;
    }

    .container-contact-footer {
        text-align: center;
    }

    .end {
        text-align: center;
    }

    .container-prova-social-geral {
        margin-top: 70px;
    }

    .owl-carousel .owl-nav {
        display: none !important;
    }

    .stick-footer-vertical {
        rotate: 90deg;
    }

    .body-footer {
        flex-direction: column;
        gap: 0;
        height: 963px;
    }
}

/* fim footer */



@media only screen and (min-width: 1680px) and (max-width: 1920px) {
    /* .container-form-image-geral {
        margin-bottom: 370px;
    } */
}

#breadcrumb li:last-child i {
    display: none !important;
}


.modal {
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.3);
    position: fixed !important;

    top: 0;
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    img {
        max-width: 100%;
        max-height: 68%;
        margin: 0 auto;
        border-radius: 10px;
    }

    #closeModal {
        position: absolute;
        top: 0;
        right: 0;
        background-color: #dd4040;
        color: #fff;
        padding: 10px;
        z-index: 11;
        border-radius: 0px 10px 0px 0px;
    }
}


@media (max-width: 720px) {
    .modal img {
        max-height: 85%;
    }
}

.owl-next span {
    width: 0;
    height: 0;
    position: absolute;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-left: 15px solid var(--prova-social-bg);
    z-index: 10;
}


.owl-prev span {
    width: 0;
    height: 0;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-right: 15px solid var(--prova-social-bg);
    position: absolute;
    z-index: 10;
}

.container-prova-social-geral .owl-item {
    border-radius: 10px !important;
}

footer .address span {
    margin-top: 2%;
}

footer .address span p {
    color: #fff !important;
    font-size: 1rem;
}

span.address__item {
    line-height: 26px;
}



/* =============================== FIXED SOCIAL MEDIA GROUP =============================== */
.fixed-social-group {
    position: fixed;
    transform: translateY(-50%);
    top: 50%;
    left: 0;
    z-index: 999;
    width: max-content;
}

.fixed-social-group .share__button {
    display: block;
    outline: none;
    border: none;
    margin: 0;
    padding: 0;
    border-radius: 0;
    overflow: hidden;
    color: #fff;
    width: 30px;
    height: 30px;
    font-size: 1em;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .3s;
}

.fixed-social-group .share__button.facebook {
    background-color: #4267B2;
}

.fixed-social-group .share__button.twitter {
    background-color: #ffffff;
   
}

.fixed-social-group .share__button.youtube {
    background-color: #FF0000;
}

.fixed-social-group .share__button.linkedin {
    background-color: #4267B2;
}
.fixed-social-group a.share__button.tiktok {
    background-color: #000;
}

.fixed-social-group .share__button.instagram {
    background: linear-gradient(#405DE6, #5B51D8, #833AB4, #C13584, #E1306C, #FD1D1D, #F56040, #F77737, #FCAF45, #FFDC80);
}


h3.title-category {
    font-size: 13px;
}


/* Alert form */
.btn-success-form {
    background-color: var(--primary-color);
    color: #fff;

}

.btn-success-form:hover {
    background-color: var(--primary-color);
    color: #FFF !important;
    transform: scale(1.1);

}

/* Alert form */


#owl-demo-banner {
    position: relative;
}

#owl-demo-banner .owl-dots {
    position: absolute;
    bottom: 50px;
    width: 100%;
}

.loader {
    border: 5px solid #f3f3f3;
    border-radius: 50%;
    border-top: 5px solid var(--primary-color);
    width: 20px;
    height: 20px;
    margin: 0 auto;
    -webkit-animation: spin 2s linear infinite;
    /* Safari */
    animation: spin 2s linear infinite;
}

/* Safari */
@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}





.container-banner-video::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-color: var(--banner-fundo);

    background: linear-gradient(0deg, var(--banner-fundo) 0%, hsl(191deg 50% 55% / 0%) 100%);

    background: -moz-linear-gradient(0deg, var(--banner-fundo) 0%, hsl(191deg 50% 55% / 0%) 100%);

    background: -webkit-linear-gradient(0deg, var(--banner-fundo) 0%, hsl(191deg 50% 55% / 0%) 100%);

    filter: progid: DXImageTransform.Microsoft.gradient(startColorstr="#E50028", endColorstr="#FFFFFF", GradientType=1);
}

.container-banner-video .content-banner-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}


@media (max-width: 768px) {
    .container-banner-video .content-banner-video .btn {
        width: 125px;
        padding: 7px;
        font-size: 12px;
    }

    .container-banner-video .content-banner-video .text-banner {
        font-size: 14px;
    }

    .content-banner p,
    .content-banner a {
        text-align: center;
        margin: 0 auto;
    }

    .content-banner .btn {
        padding: 2%;
        margin-top: 5%;
    }

    .content-banner .text-banner {
        margin-top: 3%;
    }
}

body footer span.address_title {
    font-size: 1.1rem !important;
}

.select_unidades {
    font-size: 0.9rem !important;
    width: 100%;
    margin-top: 6%;
    padding: 10px !important;
    margin-bottom: 14px !important;
    text-align: center;
    border-radius: 11px;
}
.send__whats{
    display: none;
}

#back_first_stage{
    border: none;
    background-color: transparent;
    font-size: 0.8rem;
    margin-top: 5px;
}


/*Css popup lateral*/
.popup {
    position: fixed;
    width: 350px;
    /* Inicialmente fechado */
    height: 157px;
    left: -328px;
    bottom: 90px;
    background-color: #fdfdfd;
    z-index: 10;
    /* overflow: hidden; */
    border: 1px solid #ccc;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    /* Animação suave ao abrir/fechar */
}

.popup.open {
    width: 350px;
    left: 0;
    /* Tamanho quando aberto */
}

.popup .popupContentOpen {
    background-color: #CF7207;
    position: absolute;
    right: -67px;
    /* Ajusta a posição horizontal */
    width: 158px;
    /* Ajuste para que caiba o conteúdo */
    border-radius: 5px;
    cursor: pointer;
    transform: rotate(90deg);
    top: 64px;
    animation: pulse_mesagem 2s infinite;
    /* Centraliza verticalmente */

}

@keyframes pulse_mesagem {
    0% {
       
        box-shadow: 0 0 10px #CF721F;
    }
    50% {
  
        box-shadow: 0 0 20px #cf711f38;
    }
    100% {
      
        box-shadow: 0 0 10px #CF721F;
    }
}

.popup .popupContentOpen span {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
    color: #fff;
    display: flex;
    gap: 10px;
    font-weight: bold;
}

.popup .popupContentOpen span i {
    transform: rotate(180deg);
}

.popup .popupContent {
    padding: 15px;

    transition: opacity 0.3s ease;
}

#popup .popupContent {
    overflow-y: auto;
}

#popup .popupContent h2 {
    margin: 0 !important;
    padding: 0 !important;
    font-size: 1.2em !important;
}

#popup .popupContent h3 {
    margin: 0 !important;
    padding: 0 !important;
    font-size: 1em !important;
}

#popup .popupContent p {
    margin: 0 !important;
    padding: 0 !important;
    margin-bottom: 0.10em;
    width: 94%;
    font-size: 0.9rem;
    margin-top: 0.5em !important;
}

/*Css popup lateral (FIM)*/