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

header {
    background-color: #fff;
    position: relative;
}

header .logo img {
    display: block;
    margin: 1.75rem auto;
    width: 100%;
    max-width: 160px;
    height: auto;
    transform: translateX(-180px);
}

/* 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;
    gap: 4px;
    padding: 0.5rem;

}

header #menu {
    position: relative;
}


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

header #menu>ul>li>a {
    color: #333;
    padding: 11px 15px;
    text-transform: uppercase;
    font-weight: 400;
    font-size: 12px;
}

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

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

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-radius: 12px;
    background-color: #fff;
    color: black;
}

/* MENU DROPDOWN ARROWS */
header #menu>ul>li.dropdown:not([data-icon-menu])>a::after {
    content: "\f107";
    font-family: FontAwesome;
    margin-left: 4px;
    font-size: 12px
}



.home-page-index header:not(.headerFixed, .header-mobile) {
    background-color: transparent;
    position: absolute;
    left: 0;
    width: 100%;
    z-index: 999;
}

.home-page-index header:not(.headerFixed, .header-mobile) #menu>ul>li>a {
    color: #fff;
}

.home-page-index header:not(.headerFixed, .header-mobile) #menu>ul>li>a:hover {
    color: var(--primary-color);
}

.home-page-index header #menu>ul>li>a:hover {
    color: var(--primary-color);
}

.home-page header:not(.headerFixed, .header-mobile) {
    background-color: transparent;
    position: absolute;
    left: 0;
    width: 100%;
    z-index: 1;
}

.logo img {
    width: 200px;
}


/* ASIDE */

/* =============================== ASIDE =============================== */

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

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

.aside {
    background-color: #f1f1f1;
    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: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px 0 0 5px;
    background-color: var(--primary-color);
    position: absolute;
    top: 30%;
    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 :is(a, .aside-title) {
    color: var(--dark);
}

.aside-title {
    margin: 0;
}

.aside:hover .aside__menu {
    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: 2px solid var(--dark);
    transition: .3s color;
}

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

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

    100% {
        transform: translateX(0);
    }

}

/* =============================== FOOTER =============================== */
footer {
    background-color: #4f4f4f;
    padding: 25px 0;
}

footer .logo-image img {
    max-width: 100%;
    width: 160px;
    /* filter: brightness(30); */
}

footer h3 {
    margin-top: 0;
    font-size: 18px;
    color: #fff;
}

footer .footer__menu li {
    display: flex;
    align-items: center;
    gap: 5px;
}

footer .footer__menu li i {
    color: #fff;
    font-size: 12px;
}

footer .footer__menu li a {
    display: block;
    padding: 5px 0;
    font-size: 14px;
    color: #fff;
    transition: .3s;
}

footer .footer__menu li a i {
    font-size: 10px;
}

footer .footer__menu li a:hover {
    color: var(--primary-color);
}

footer .address :is(span, a):not(.btn) {
    color: #fff;
    font-size: 14px;
    line-height: 25px;
    transition: .3s;
    display: flex;
    gap: 5px;
    align-items: center;
    word-break: break-word;
}

footer .address a:not(.btn):hover {
    color: var(--primary-color);
}

footer .address .btn {
    background-color: #fff;
    color: #fff;
    font-weight: bold;
    display: inline-block;
}

footer .social {
    gap: 10px;
    margin-top: 15px;
}

footer .social__icons {
    font-size: 14px;
    opacity: 0.75;
    color: #fff;
    padding: 8px 12px;
    border-radius: 100%;
    aspect-ratio: 1/1;
    background-color: var(--primary-color);
}

footer .social__icons:hover {
    opacity: 1;
}

/* MEDIUM DEVICE */
@media only screen and (max-width:768px) {
    footer img {
        display: block;
        margin: 0 auto;
    }
}

/* SMALL DEVICE */
@media only screen and (max-width:576px) {
    footer h3:after {
        margin-left: auto;
        margin-right: auto;
    }

    footer .address .btn {
        display: inline-block;
        margin: 1rem auto;
        width: auto;
    }

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


/* 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%;
        display: flex;
    }

    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%;
    padding: 8px;
    margin: 0 10px;
    background-color: #fff;
}

.clientes__carousel {
    padding: 0 16px;
}

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

/* FIM CLIENTES */

/* ==================== Cards mod-21 ==================== */

.card.card--mod-21 {
    position: relative;
    border-radius: .25rem;
    overflow: hidden;
    border-radius: 30px;
}

.card.card--mod-21 .card__image {
    display: block;
    width: 100%;
    aspect-ratio: 4/4;
    object-fit: cover
}

.card.card--mod-21 .card__title {
    margin: 0;
    padding: .75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: calc((1.125rem * 3)*1.3);
    font-size: 1.125rem;
    text-align: center;
    color: #fff;
    background-color: var(--primary-color);
    line-height: 1.3;
}

.card.card--mod-21 .card__title::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    border: 2px solid #fffC;
    opacity: 0;
    border-radius: .25rem;
    transition: all .3s ease-out;
    transition-delay: 0s
}

.card.card--mod-21:focus .card__title,
.card.card--mod-21:hover .card__title {
    height: 100%;
}

.card.card--mod-21:hover .card__title::after {
    width: calc(100% - 2rem);
    height: calc(100% - 2rem);
    margin: 1rem;
    opacity: 1;
    transition-delay: .2s
}

/* ================== FIM Cards mod-21 ================== */

.bg-home {
    background-image: url('<?=$url?>imagens/bg-home.webp');
    background-size: cover;
    background-repeat: no-repeat;
}

.home {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.home p {
    text-align: center;
}

.servicos-img {
    width: 100px;
    max-width: 100%;
}

/* CTA */

.cta {
    background-image: linear-gradient(to right, rgb(5 0 0), rgb(114 88 0)),
        url('<?=$url?>imagens/cta/bg-cta.webp');
    background-blend-mode: overlay;
    background-size: cover;
    background-position: center;
    padding: 30px 0;
}


.cta .cta__title {
    font-size: 45px;
    color: black;
    font-weight: 500;
    margin: 0;
}

.cta__content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.cta .cta__subtitle {
    font-size: 22px;
    color: black;
    font-weight: 400;
    margin: 0;
}

.cta .cta__link {
    color: #fff;
    text-transform: uppercase;
    background-color: black;
    transition: .5s;
    padding: 10px 30px;
    margin-top: 20px;
    border-radius: 20px;
    margin-top: 30px;
}

.cta .cta__link:hover {
    background-color: var(--secondary-color);
}


/* =============================== COUNTER =============================== */

.counter {
    background: linear-gradient(rgba(0, 0, 0, 70%) 100%, rgba(0, 0, 0, 70%) 100%), url('<?= $url ?>imagens/metricas.webp');
    ;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 200px 0;
}

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

.counter__content span {
    font-size: 32px;
    color: var(--primary-color);
    font-weight: bold;
}

.counter__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 15px;
    justify-content: flex-end;
    margin: 15px 0;
}

.counter__title {
    position: relative;
    font-size: 46px;
    margin: 5px 0;
    text-align: center;
    background: linear-gradient(to right, rgb(238, 31, 42), rgb(253, 205, 46));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.counter__content {
    position: relative;
}

.counter__content::after {
    content: "";
    background-color: var(--secondary-color);
    position: absolute;
    height: 1px;
    width: 60px;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
}

.counter__subtitle {
    font-size: 20px;
    text-transform: uppercase;
    color: #fff;
    font-weight: normal;
    margin: 0;
    text-align: center;
}

/* =============================== CARD =============================== */
.card--mod-24 {
    position: relative;
    overflow: hidden;
}

.card--mod-24 .card_image {
    display: block;
    width: 100%;
    height: 400px;
    object-fit: cover;
    filter: brightness(0.5);
}

.card--mod-24 .card_title {
    position: absolute;
    top: 45%;
    left: 50%;
    font-size: 1.35em;
    font-weight: 400;
    margin: 0;
    text-transform: uppercase;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    transition: .7s;
}

.card--mod-24:hover .card_title {
    top: 40%;
}

.card--mod-24 .card__link {
    position: absolute;
    left: 50%;
    color: #ffffff00;
    transform: translateX(-50%);
    bottom: 20%;
    padding: 10px;
    transition: .8s;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.card--mod-24:hover .card__link {
    bottom: 30%;
    color: #fff;
    border-left: 2px solid var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
}

.card--mod-24 .card__link::before {
    position: absolute;
    content: '';
    width: 0%;
    height: 3px;
    left: 50%;
    background: #ffffff00;
    transform: translateX(-50%);
    top: -70%;
    transition: .8s;
}

.card--mod-24 .card__link:hover {
    border: 2px solid var(--secondary-color);
    background-color: var(--secondary-color);
}

.title--default-02 {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: relative;
}

.title--default-02::after {
    content: "";
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    height: 2px;
    width: 5%;
    background-color: var(--primary-color);
    position: absolute;
}

.title--default-02 span {
    color: black;
    text-transform: uppercase;
}

.quem-somos__content {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
}

.quem-somos__image {
    position: relative;
    z-index: -1;
}

.quem-somos__image .quem-somos__img {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    object-fit: cover;
    width: 100%;
    border-radius: 30px;
    box-shadow: 7px 7px 0px 0px rgba(0, 0, 0, 0.75);
}

.quem-somos__image .mascote {
    position: absolute;
    max-height: 200px;
    max-width: 120px;
    left: 5%;
    bottom: 0;
}

.quem-somos__content h2 {
    margin: 0;
    font-size: 2em;
    text-transform: uppercase;
    color: black;
    font-weight: 500;
}

.quem-somos__content p {
    font-size: 1.2em;
}

.certificado {
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, 0.2);
}

.certificado img {
    transition: .4s;
}

.certificado img:hover {
    transform: scale(1.04);
}

.title--default {
    display: flex;
    justify-content: center;
    flex-direction: column;
    line-height: 1.1;
}

.title--default span {
    letter-spacing: 2px;
    color: var(--primary-color);
    font-size: 20px;
}

.servico__image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.servico__image img:nth-child(odd) {
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
    height: 200px;
    max-width: 270px;
    z-index: -1;
}

.servico__image img:nth-child(even) {
    position: absolute;
    bottom: -240px;
    right: 0;
    object-fit: cover;
    height: 200px;
    max-width: 270px;
}

.container-space {
    padding: 60px 0;
}

@media only screen and (max-width: 576px) {
    .servico__image {
        position: static;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-wrap: wrap;
    }

    .servico__image img:nth-child(odd) {
        position: static;
        top: 0;
        left: 0;
        object-fit: cover;
        height: 200px;
        max-width: 270px;
        z-index: -1;
    }

    .servico__image img:nth-child(even) {
        position: static;
        bottom: -240px;
        right: 0;
        object-fit: cover;
        height: 200px;
        max-width: 270px;
    }
}

.produto-gallery {
    width: 100%;
    height: 250px;
    position: relative;
    display: inline-block;
    z-index: 1;
    padding: 5px;
    /* Espaço para simular a "borda" */
    box-sizing: border-box;
    /* Inclui o padding no tamanho total */
}

.produto-gallery img {
    width: 100%;
    max-height: 24rem;
    object-fit: fill;
    aspect-ratio: 1 / 1;
    transition: .5s;
    position: relative;
    z-index: 1;
}



.produto-gallery:hover img {
    transform: scale(1.04);
}

.produto-card {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    justify-content: flex-start;
}

.produto-card__content {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
}

.produto-card__content h3 {
    color: black;
    margin: 0;
    font-size: 1.2em;
    font-weight: 400;
}

.produto-card__icon i {
    background-color: black;
    color: #fff;
    padding: 10px;
    border-radius: 50%;
    font-size: 1.5em;
}

.produto-card__icon i:nth-of-type(2) {
    padding: 30px;
}

.banner-overlay {
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.484);
}

.video-banner {
    position: relative;
    width: 100%;
    height: 660px;
    overflow: hidden;
}

.video-banner::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: #00000023;
    z-index: 1;
}

.video-banner video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

/* INPUT LABEL FORM CONTATO */
.label-anexo {
    cursor: pointer;
}

.gradient {
    background: linear-gradient(to right, rgb(238, 31, 42), rgb(253, 205, 46));

}

.gradient-text {

    background: linear-gradient(to right, rgb(238, 31, 42), rgb(253, 205, 46));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.img-quem {
    position: relative;
    display: inline-block;
}

.image-container {
    position: relative;
    display: inline-block;
}

.flex {
    display: flex !important;
}



.img-quem::after {
    content: "";
    position: absolute;
    top: -22px;
    left: 12rem;
    width: 70%;
    height: 100%;
    background: linear-gradient(to right, rgb(238, 31, 42), rgb(253, 205, 46));
    border-radius: 15px;
    z-index: -1;
}

@media(max-width: 1024px){
  .img-quem::after {
    display: none;
  }
}


.thumb-1 {
    width: 100%;
    position: relative;
    overflow: hidden;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    flex-grow: 1;
    transition: flex-grow 0.3s ease;
}

.thumb-1__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(1px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-out 0.1s;
    padding: 20px;
    font-size: 2rem;
    color: var(--light);
}

.thumb-1:hover .thumb-1__overlay {
    opacity: 1;
    visibility: visible;
}

.thumb-1__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Efeito de hover para expandir o item */
.thumb-1:hover {
    flex-grow: 2;
}



/* DEPOIMENTOS */

.depoimentos {
    margin: 48px 0;
}

.depoimentos__title {
    font-size: 32px;
    text-align: center;
    margin: 0 0 48px 0;
}

.depoimentos__content {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.depoimentos__side-info {
    width: calc(25% - 25px);
}

.depoimentos__carousel {
    width: calc(75% - 25px);
}

.depoimentos__side-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.depoimentos__side-title {
    text-align: center;
    margin: 0;
    font-size: 24px;
}

.depoimentos__overall-rating {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
}

.depoimentos__overall-rating i {
    color: #F6BB06;
    font-size: 28px;
}

.depoimentos__side-image {
    display: block;
    width: 100%;
    max-width: 110px;
    height: auto;
}

.depoimentos__carousel {
    padding: 0 16px 8px 16px;
}

.depoimentos__item {
    position: relative;
    margin: 0 8px;
    display: flex !important;
    flex-direction: column;
    gap: 16px;
    background-color: var(--light);
    padding: 20px;
    border-radius: 4px;
}

.depoimentos__carousel .slick-track {
    display: flex !important;
}

.depoimentos__carousel .slick-slide {
    height: inherit !important;
}

.depoimentos__google-icon {
    position: absolute;
    right: 8px;
    top: 8px;
    display: block;
    width: auto;
    height: 20px;
}

.depoimentos__item-heading {
    display: grid;
    grid-template-columns: 40px 1fr;
    gap: 16px;
}

.depoimentos__item-cover {
    aspect-ratio: 1/1;
    overflow: hidden;
}

.depoimentos__item-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.depoimentos__heading-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.depoimentos__heading-title {
    margin: 0;
    font-size: 14px;
}

.depoimentos__item-date {
    font-size: 12px;
    margin: 0;
}

.depoimentos__item-rating {
    display: flex;
    align-items: center;
    gap: 4px;
}

.depoimentos__item-rating i {
    color: #F6BB06;
    font-size: 12px;
}

.depoimentos__item-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.depoimentos__text {
    margin: 0;
    font-size: 14px;
    color: #000;
}

@media only screen and (max-width: 768px) {
    .depoimentos__content {
        display: flex;
        flex-direction: column;
        gap: 50px;
    }

    .depoimentos__side-info,
    .depoimentos__carousel {
        width: 100%;
    }
}

/* FIM DEPOIMENTOS */

.debug {
    border: 3px solid red;
}

/* =============================== CARD =============================== */
.card--mod-16 {
    display: block;
    color: #fff;
    outline: transparent solid 2px !important;
    outline-offset: 1px;
    border-radius: 1.5rem .25rem;
    background-color: var(--primary-color);
    transition: .3s ease-out;
    overflow: hidden
}

.card--mod-16:hover {
    background-color: var(--secondary-color)
}

.card--mod-16:active,
.card--mod-16:focus {
    outline: var(--secondary-color) solid 2px !important;
    outline-offset: 1px;
    background-color: var(--secondary-color)
}

.card--mod-16 .card__image {
    aspect-ratio: 1/1;
    object-fit: cover;
    width: 100%
}

.card--mod-16:hover .card__image {
    opacity: .8
}

.card--mod-16 .card__title {
    align-items: center;
    color: inherit;
    display: flex;
    font-size: .875rem;
    line-height: 1.3;
    min-height: calc((.875rem * 3) * 1.3);
    justify-content: center;
    margin: 0;
    padding: .5rem .75rem;
    text-align: center
}

.slick-carousel a {
    margin: 5px;
}

/* GTranslate */
#goog-gt-tt {
    display: none !important;
}

.goog-te-banner-frame {
    display: none !important;
}

.goog-te-menu-value:hover {
    text-decoration: none !important;
}

body {
    top: 0 !important;
}

#google_translate_element2 {
    display: none !important;
}

.translate-container {
    display: inline-flex;
}

.translate-container img {
    margin: 0 2px;
    width: 25px;
    height: auto
}

/* End GTranslate */

.VIpgJd-ZVi9od-ORHb-OEVmcd {
    display: none;
}

.slick-prev {
    left: -1% !important;
}

.slick-carousel.segmentos .slick-next,
.slick-carousel.segmentos  .slick-prev {
    top: 10%;
}