/* ========== [ ESTILOS GLOBAIS DO SITE ] ==========*/
/* #########################
    ESTILOS GLOBAIS
   #########################*/
:root {
    --default-font: "Roboto",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --heading-font: "Raleway",  sans-serif;
    --nav-font: "Poppins",  sans-serif;
    --background-color: #ffffff;
    --default-color: #555555;
    --heading-color: #0d3035;
    --accent-color: #1f3d7e;
    --secondary-color: #ffd502;
    --surface-color: #ffffff;
    --contrast-color: #ffffff;
    --nav-color: #060606;
    --nav-hover-color: #143579;
    --nav-mobile-background-color: #ffffff;
    --nav-dropdown-background-color: #ffffff;
    --nav-dropdown-color: #555555;
    --nav-dropdown-hover-color: #143579;
    scroll-behavior: smooth;
}
.light-bg {
    --background-color: #f1f7fc;
    --surface-color: #ffffff;
}
.gray-bg {
    --background-color: #f9fafc;
    --surface-color: #ffffff;
}
.dark-bg {
    --background-color: var(--accent-color);;
    --default-color: #ffffff;
    --heading-color: #ffffff;
    --surface-color: #252525;
    --contrast-color: #ffffff;
}
body {color: var(--default-color);background-color: var(--background-color);font-family: var(--default-font);}
a {color: var(--accent-color);text-decoration: none;transition: 0.3s;}
a:hover {color: color-mix(in srgb, var(--accent-color), transparent 25%);text-decoration: none;}
h1, h2, h3, h4, h5, h6 {color: var(--heading-color);font-family: var(--heading-font);}
.primary-color{color: var(--accent-color);}
.secondary-color{color: var(--secondary-color);}
@media screen and (max-width: 768px) {
    [data-aos-delay] {
        transition-delay: 0 !important;
    }
}
.scroll-bar::-webkit-scrollbar {width: 10px; height: 8px}
.scroll-bar::-webkit-scrollbar-track {box-shadow: inset 0 0 5px grey;border-radius: 15px;}
.scroll-bar::-webkit-scrollbar-thumb {background: var(--accent-color);border-radius: 10px;}
.scroll-bar::-webkit-scrollbar-thumb:hover {background: var(--secondary-color);}

/* #########################
    TÍTULOS E CABEÇALHOS
   #########################*/
.page-title {
    color: var(--default-color);
    background-color: var(--background-color);
    padding: 50px 0 40px 0;
    text-align: center;
    position: relative;
}
.page-title h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 10px;
}
.page-title .breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    justify-content: center;
    padding: 0;
    margin: 0;
    font-size: 16px;
    font-weight: 400;
}
.page-title .breadcrumbs ol li+li {
    padding-left: 10px;
}
.page-title .breadcrumbs ol li+li::before {
    content: "/";
    display: inline-block;
    padding-right: 10px;
    color: color-mix(in srgb, var(--default-color), transparent 50%);
}
.page-title .breadcrumbs a {
    color: var(--secondary-color);
    font-weight: 500;
}
.underline-detail, .under-detail{position: relative;}
.underline-detail:after{
    content: "";
    position: absolute;
    display: block;
    width: 110px;
    height: 3px;
    background: var(--secondary-color);
    left: 0;
    right: 0;
    bottom: -5px;
    margin: auto;
}
.under-detail:after{
    content: "";
    display: block;
    width: 160px;
    height: 3px;
    background: var(--secondary-color);
    left: 0;
    right: 0;
    bottom: -5px;
}

/* ========== [ ESTILOS DA PÁGINA INICIAL ] ==========*/
/* #########################
    SESSÔES DE PÁGINA
   #########################*/
section, .sessao-de-conteudo {
    color: var(--default-color);
    background-color: var(--background-color);
    padding: 60px 0;
    scroll-margin-top: 90px;
    overflow: clip;
}
@media (max-width: 1199px) {
    section, .detalhamento.sessao-de-conteudo {
        scroll-margin-top: 66px;
        padding-right: 20px;
        padding-left: 20px;
    }
}
.sessao-de-conteudo-title {text-align: center;padding-bottom: 60px;position: relative;}
.sessao-de-conteudo-title h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
}
.sessao-de-conteudo-title h2:after {
    content: "";
    position: absolute;
    display: block;
    width: 50px;
    height: 3px;
    background: var(--accent-color);
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}
.sessao-de-conteudo-title p {margin-bottom: 0;}

/* #########################
    MENU DE NAVEGAÇÃO
   #########################*/
.header {
    --background-color: #f3f3f3;
    --default-color: #ffffff;
    --heading-color: #ffffff;
    color: var(--default-color);
    background-color: var(--background-color);
    padding: 15px 0;
    transition: all 0.5s;
    z-index: 997;
}
.header .logomark {line-height: 1;}
.header .logomark img {max-height: 50px;margin-right: 8px;}
.header .logomark h1 {
    font-size: 30px;
    margin: 0;
    font-weight: 700;
    color: var(--heading-color);
    padding-bottom: 5px;
}
.header .logomark h1 span {color: color-mix(in srgb, var(--accent-color) 90%, white 15%);font-style: italic;}
.header .btn-menu, .header .btn-menu:focus, .btn-main, .btn-main:focus {
    color: var(--contrast-color);
    background: var(--accent-color);
    font-size: 17px;
    font-weight: 500;
    padding: 8px 25px;
    margin: 0 0 0 30px;
    border-radius: 50px;
    transition: 0.3s;
}
.header .btn-menu.danger{
    background: red;
    margin: 0 0 0 10px;
}
.header .btn-menu:hover, .header .btn-menu:focus:hover, .btn-main:hover, .btn-main:focus:hover {
    color: var(--nav-color);
    background: color-mix(in srgb, var(--secondary-color), transparent 15%);
}
.btn-main{margin: 0 !important;}
@media (max-width: 1200px) {
    .header .logomark {order: 1;}
    .header .logomark h1 {font-size: 24px;}
    .header .btn-menu {order: 2;margin: 0 15px 0 0;padding: 6px 15px;}
    .header .main-menu {order: 3;}
}
@media (min-width: 1200px) {
    .main-menu {padding: 0;}
    .main-menu ul {
        margin: 0;
        padding: 0;
        display: flex;
        list-style: none;
        align-items: center;
    }
    .main-menu li {position: relative;}
    .main-menu>ul>li {white-space: nowrap;padding: 15px 14px;}
    .main-menu>ul>li:last-child {padding-right: 0;}
    .main-menu a, .main-menu a:focus {
        color: var(--nav-color);
        padding: 0 2px;
        font-size: 17px;
        font-family: var(--nav-font);
        font-weight: 500;
        display: flex;
        align-items: center;
        justify-content: space-between;
        white-space: nowrap;
        transition: 0.3s;
        position: relative;
    }
    .main-menu a i, .main-menu a:focus i {
        font-size: 12px;
        line-height: 0;
        margin-left: 5px;
        transition: 0.3s;
    }
    .main-menu>ul>li>a:before {
        content: "";
        position: absolute;
        height: 2px;
        bottom: -15px;
        left: 0;
        background-color: #ffd602;
        visibility: hidden;
        width: 0px;
        transition: all 0.3s ease-in-out 0s;
    }
    .main-menu a:hover:before, .main-menu li:hover>a:before, .main-menu .active:before {
        visibility: visible;
        width: 100%;
    }
    .main-menu li:last-child a {padding-right: 0;}
    .main-menu li:hover>a, .main-menu .active, .main-menu .active:focus {
        color: var(--nav-hover-color);
        font-weight: 600;
    }
    .main-menu .dropdown ul {
        margin: 0;
        padding: 10px 0;
        background: var(--nav-dropdown-background-color);
        display: block;
        position: absolute;
        visibility: hidden;
        left: 14px;
        top: 130%;
        opacity: 0;
        transition: 0.3s;
        border-radius: 0;
        z-index: 99;
        box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
    }
    .main-menu .dropdown ul li {min-width: 200px;}
    .main-menu .dropdown ul a {
        padding: 10px 20px;
        font-size: 15px;
        text-transform: none;
        color: var(--nav-dropdown-color);
    }
    .main-menu .dropdown ul a i {font-size: 12px;}
    .main-menu .dropdown ul a:hover,
    .main-menu .dropdown ul .active:hover,
    .main-menu .dropdown ul li:hover>a {color: var(--nav-dropdown-hover-color);}
    .main-menu .dropdown:hover>ul {opacity: 1;top: 100%;visibility: visible;}
    .main-menu .dropdown .dropdown ul {top: 0;left: 90%;visibility: hidden;}
    .main-menu .dropdown .dropdown:hover>ul {
        opacity: 1;
        top: 0;
        left: 100%;
        visibility: visible;
    }
}
@media (max-width: 1199px) {
    .toggle-icon {
        color: var(--nav-color);
        font-size: 28px;
        line-height: 0;
        margin-right: 10px;
        cursor: pointer;
        transition: color 0.3s;
    }
    .main-menu {padding: 0;z-index: 9997;}
    .main-menu ul {
        display: none;
        list-style: none;
        position: absolute;
        inset: 60px 20px 20px 20px;
        padding: 10px 0;
        margin: 0;
        border-radius: 6px;
        background-color: var(--nav-mobile-background-color);
        overflow-y: auto;
        transition: 0.3s;
        z-index: 9998;
        box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
    }
    .main-menu a, .main-menu a:focus {
        color: var(--nav-dropdown-color);
        padding: 10px 20px;
        font-family: var(--nav-font);
        font-size: 17px;
        font-weight: 500;
        display: flex;
        align-items: center;
        justify-content: space-between;
        white-space: nowrap;
        transition: 0.3s;
    }
    .main-menu a i, .main-menu a:focus i {
        font-size: 12px;
        line-height: 0;
        margin-left: 5px;
        width: 30px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        transition: 0.3s;
        background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
    }
    .main-menu a i:hover, .main-menu a:focus i:hover {
        background-color: var(--accent-color);
        color: var(--contrast-color);
    }
    .main-menu a:hover, .main-menu .active, .main-menu .active:focus {
        color: var(--nav-dropdown-hover-color);
    }
    .main-menu .active i, .main-menu .active:focus i {
        background-color: var(--accent-color);
        color: var(--contrast-color);
        transform: rotate(180deg);
    }
    .main-menu .dropdown ul {
        position: static;
        display: none;
        z-index: 99;
        padding: 10px 0;
        margin: 10px 20px;
        background-color: var(--nav-dropdown-background-color);
        border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
        box-shadow: none;
        transition: all 0.5s ease-in-out;
    }
    .main-menu .dropdown ul ul {background-color: rgba(33, 37, 41, 0.1);}
    .main-menu .dropdown>.dropdown-active {display: block;background-color: rgba(33, 37, 41, 0.03);}
    .mobile-nav-active {overflow: hidden;}
    .mobile-nav-active .toggle-icon {
        color: #fff;
        position: absolute;
        font-size: 32px;
        top: 15px;
        right: 15px;
        margin-right: 0;
        z-index: 9999;
    }
    .mobile-nav-active .main-menu {
        position: fixed;
        overflow: hidden;
        inset: 0;
        background: rgba(33, 37, 41, 0.8);
        transition: 0.3s;
    }
    .mobile-nav-active .main-menu>ul {
        display: block;
    }
}

/* #########################
    FOOTER
   #########################*/
.footer {
    font-size: 14px;
    position: relative;
    color: var(--nav-color);
    background-color: #dbdbdb;
}
.footer .top-50 {padding-top: 50px;}
.footer .redes-sociais{
    display: flex;
}
.footer .redes-sociais a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
    font-size: 16px;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    margin-right: 10px;
    transition: 0.3s;
}
.footer .redes-sociais a:hover {color: var(--accent-color);border-color: var(--accent-color);}
.footer h4 {
    font-size: 16px;
    font-weight: bold;
    position: relative;
    padding-bottom: 12px;
}
.footer .acesso-rapido {margin-bottom: 30px;}
.footer .acesso-rapido ul {list-style: none;padding: 0;margin: 0;}
.footer .acesso-rapido ul i {
    margin-right: 3px;
    font-size: 12px;
    line-height: 0;
    color: var(--accent-color);
}
.footer .acesso-rapido ul li {padding: 10px 0;display: flex;align-items: center;}
.footer .acesso-rapido ul li:first-child {padding-top: 0;}
.footer .acesso-rapido ul a {
    display: inline-block;
    color: color-mix(in srgb, var(--default-color), transparent 5%);
    line-height: 1;
    font-weight: 600;
}
.footer .acesso-rapido ul a:hover {color: var(--accent-color);}
.footer .footer-logo a {
    color: var(--heading-color);
    font-size: 24px;
    font-weight: 600;
    font-family: var(--heading-font);
}
.footer .footer-logo img {width: 200px;}
.footer .contato p {margin-bottom: 5px;}
.footer .microton-footer {
    padding: 25px 0;
    border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}
.footer .microton-footer p {margin-bottom: 0;}
@media screen and (max-width: 768px) {
    .footer .footer-logo img {margin: 0 auto;}
    .footer .acesso-rapido {text-align: center}
    .footer .acesso-rapido ul a{
        margin: 0 auto;
    }
    .footer .acesso-rapido ul i{
        display: none;
    }
}

/* #########################
    BANNER INICIAL
   #########################*/
.main-banner li{display: none !important;}
.carousel-caption .hero-btns {display: flex;gap: 1rem;margin-bottom: 2.5rem;}
@media (max-width: 576px) {
    .carousel-caption .hero-btns {flex-direction: column;}
}
.carousel-caption .btn, .hero-swiper .slide-content .btn {
    padding: 8px 25px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}
.carousel-caption .btn-primary, .hero-swiper .slide-content .btn-primary {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--contrast-color);
}
.carousel-caption .btn-primary:hover, .hero-swiper .slide-content .btn-primary:hover {
    background-color: color-mix(in srgb, var(--accent-color), #000 10%);
    border-color: color-mix(in srgb, var(--accent-color), #000 10%);
}
.carousel-caption .btn-outline, .hero-swiper .slide-content .btn-outline {
    background-color: transparent;
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
}
.carousel-caption .btn-outline:hover, .hero-swiper .slide-content .btn-outline:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
}
.hero-swiper {
    position: relative;
    width: 100%;
    height: 50vh;
    min-height: 400px;
    overflow: hidden;
}
.hero-swiper .swiper-slide {
    position: relative;
    width: 100%;
    height: 100%;
}
.hero-swiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-swiper .swiper-slide:nth-child(odd) .overlay {
    background: var(--accent-color);
    opacity: 0.9;
}
.hero-swiper .swiper-slide:nth-child(even) .overlay {
    background: #efde89;
    opacity: 0.9;
}

.hero-swiper .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 10;
}
.hero-swiper .slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 20;
    text-align: center;
    color: white;
    font-size: 24px;
}
@media (max-width: 768px) {
    .hero-swiper .slide-content h1 {
        font-size: 1.8rem;
    }
    .hero-swiper .slide-content p {
        font-size: 1rem;
    }
}

/* #########################
    BANNER CLIENTES
   #########################*/
.parceiros {padding-top: 10px;padding-bottom: 10px;}
.parceiros .slide {
    overflow: hidden;
    background-color: var(--surface-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}
.parceiros .swiper-wrapper {
    height: auto !important;
    align-items: stretch;
    transition-timing-function: linear;
}
.parceiros .swiper-slide {
    height: auto;
    border-right: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}
.parceiros .swiper-slide:last-child {border-right: none;}
.parceiros .client-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    padding: 10px 40px;
    height: 100%;
}
.parceiros .client-logo img {
    max-width: 80px;
    transition: 0.3s;
    opacity: 0.5;
    filter: grayscale(100);
}
.parceiros .client-logo img:hover {filter: none;opacity: 1;}
@media (max-width: 640px) {
    .parceiros .client-logo {
        padding: 0;
    }
    .parceiros .client-logo img {
        max-width: 60px;
    }
}

/* #########################
    PREMIAÇÕES
   #########################*/
.premiations .premiations-hero {margin-bottom: 2.5rem;}
.premiations .premiations-hero .headline {
    color: var(--accent-color);
    font-family: var(--heading-font);
    font-size: 2.25rem;
    font-weight: 600;
    line-height: 1.2;
}
.premiations .premiations-hero .lead {
    color: var(--default-color);
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 0;
}
.premiations .premiations-hero .premiations-rating {
    background: var(--surface-color);
    border-radius: 5px;
    box-shadow: 0 4px 32px color-mix(in srgb, var(--accent-color), transparent 90%);
    min-width: 270px;
    gap: 8px;
}
.premiations .premiations-hero .premiations-rating .premiations-rating-img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    background: color-mix(in srgb, var(--accent-color), transparent 85%);
    border: 2px solid color-mix(in srgb, var(--accent-color), transparent 80%);
}
.premiations .premiations-hero .premiations-rating .pontuacao .fs-5 {color: var(--accent-color);}
.premiations .premiations-hero .premiations-rating .pontuacao .stars {
    color: color-mix(in srgb, var(--accent-color), #ffd700 70%);
    font-size: 1.15rem;
}
.premiations .premiations-hero .premiations-rating .avaliacoes {
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    font-size: 0.95rem;
    font-family: var(--default-font);
}
.premiations .premiations-counters {margin-top: 0.5rem;}
.premiations .premiations-counters .premiations-counter-card {
    background: var(--surface-color);
    border-radius: 5px;
    box-shadow: 0 2px 12px color-mix(in srgb, var(--accent-color), transparent 90%);
    padding: 1.75rem 1rem 1.25rem 1rem;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: box-shadow 0.3s;
}
.premiations .premiations-counters .premiations-counter-card:hover {
    box-shadow: 0 4px 32px color-mix(in srgb, var(--secondary-color), transparent 82%);
}
.premiations .premiations-counters .premiations-counter-card:hover div {
    color: var(--secondary-color);
    transition: .2s;
}
.premiations .premiations-counters .premiations-counter-card .counter-value {
    color: var(--accent-color);
    font-family: var(--heading-font);
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.1;
    display: flex;
    align-items: flex-end;
}
.premiations .premiations-counters .premiations-counter-card .counter-value .purecounter {
    font-size: inherit;
    color: inherit;
}
.premiations .premiations-counters .premiations-counter-card .label {
    color: color-mix(in srgb, var(--default-color), transparent 35%);
    font-size: 1rem;
    font-family: var(--default-font);
    font-weight: 500;
    margin-top: 0.3rem;
    letter-spacing: 0.02em;
}
@media (max-width: 992px) {
    .premiations .premiations-hero .headline {font-size: 1.7rem;}
    .premiations .premiations-counters .premiations-counter-card {
        font-size: 0.97rem;
        padding: 1.2rem 0.7rem 1rem 0.7rem;
    }
}
@media (max-width: 767px) {
    .premiations .premiations-hero {flex-direction: column;}
    .premiations .premiations-hero .headline {font-size: 1.3rem;text-align: center;}
    .premiations .premiations-hero .lead {font-size: 1rem;text-align: center;}
    .premiations .premiations-hero .premiations-rating {margin-inline: auto;}
    .premiations .premiations-counters .premiations-counter-card {padding: 1rem;font-size: 0.93rem;}
}
.premiations .bi-star-fill, .premiations .bi-star-half {
    color: #ffae00;
    font-size: 1.18em;
    vertical-align: -0.13em;
    margin-right: 2px;
}
.premiations .bi-star-fill:last-child, .premiations .bi-star-half:last-child {margin-right: 0;}

/* #########################
    PRESTAÇÃO DE SERVIÇOS
   #########################*/
.servicos .row {display: flex;flex-wrap: wrap;}
.servicos .item-grid-servicos {display: flex;}
.servicos .item {
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    padding: 40px 30px;
    background-color: var(--surface-color);
    border-radius: 12px;
    box-shadow: 0 10px 25px color-mix(in srgb, var(--default-color), transparent 90%);
    transition: all 0.3s ease;
    cursor: pointer;
}
.servicos .item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background-color: var(--accent-color);
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
}
.servicos .item .icone {
    width: 72px;
    height: 72px;
    background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
    color: var(--accent-color);
    font-size: 34px;
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}
.servicos .item .icone i {line-height: 1;}
.servicos .item h3 {font-size: 26px;font-weight: 700;margin-bottom: 15px;}
.servicos .item h3 a {color: var(--heading-color);transition: color 0.3s ease;}
.servicos .item h3 a span {display: inline-block;color: var(--accent-color);}
.servicos .item h3 a:hover {color: var(--accent-color);}
.servicos .item p {
    color: var(--default-color);
    margin-bottom: 0;
    transition: color 0.3s ease;
}
.servicos .item:hover {
    box-shadow: 0 14px 30px color-mix(in srgb, var(--accent-color), transparent 85%);
}
.servicos .item:hover .icone {transform: scale(1.1); background-color: color-mix(in srgb, var(--secondary-color), transparent 20%);}
.servicos .item:hover h3 a span{transition: .5s;color: var(--secondary-color);}
.servicos .item:hover p {color: color-mix(in srgb, var(--default-color), transparent 20%);}
@media (max-width: 768px) {
    .servicos .item {padding: 50px 25px 70px;}
    .servicos .item h3 {font-size: 22px;}
    .servicos .item .icone {width: 64px;height: 64px;font-size: 30px;}
}
@media (max-width: 768px) {
    .servicos {padding: 70px 0 50px;}
}
.servicos .swiper-wrapper {height: auto !important;}

/* #########################
    NOSSOS PRODUTOS
   #########################*/
.produtos .filtra-produto {
    padding: 0 0 20px 0;
    margin: 0 auto;
    list-style: none;
    text-align: center;
}
.produtos .filtra-produto li {
    cursor: pointer;
    display: inline-block;
    padding: 0;
    font-size: 18px;
    font-weight: 500;
    margin: 0 10px;
    line-height: 1;
    transition: all 0.3s ease-in-out;
}
.produtos .filtra-produto li:hover, .produtos .filtra-produto li.active {color: var(--accent-color); font-weight: 600}
.produtos .filtra-produto li:first-child {margin-left: 0;}
.produtos .filtra-produto li:last-child {margin-right: 0;}
@media (max-width: 575px) {
    .produtos .filtra-produto li {font-size: 14px;margin: 0 5px;}
}
.produtos .card-produto {
    background-color: var(--surface-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    border-radius: 15px;
    overflow: hidden;
    height: 100%;
    transition: all 0.4s ease;
    position: relative;
}
.produtos .card-produto::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), color-mix(in srgb, var(--accent-color), var(--heading-color) 30%));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}
.produtos .card-produto:hover::before {
    transform: scaleX(1);
    background: linear-gradient(90deg, var(--secondary-color), color-mix(in srgb, var(--secondary-color), var(--heading-color) 30%));
}
.produtos .card-produto:hover .card-header .icon{
    background: linear-gradient(90deg, var(--secondary-color), color-mix(in srgb, var(--secondary-color), var(--heading-color) 30%));
}
.produtos .card-produto.featured {
    border-color: var(--accent-color);
    box-shadow: 0 10px 30px color-mix(in srgb, var(--accent-color), transparent 85%);
}
.produtos .card-produto.featured::before {transform: scaleX(1);}
.produtos .card-produto.featured .icon {
    background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), var(--heading-color) 20%));
    color: var(--contrast-color);
}
.produtos .card-produto:hover {
    box-shadow: 0 15px 40px color-mix(in srgb, var(--default-color), transparent 85%);
    border-color: var(--secondary-color);
}
.produtos .card-produto .card-header {padding: 25px 25px 15px;text-align: center;}
.produtos .card-produto .card-header .icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: color-mix(in srgb, var(--accent-color), transparent 90%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
    font-size: 32px;
    transition: all 0.3s ease;
}
.produtos .card-produto .card-header h4 {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    color: var(--heading-color);
}
.produtos .card-produto .card-body {padding: 0 25px 15px;}
.produtos .card-produto .card-body p {
    font-size: 14px;
    line-height: 1.6;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    margin-bottom: 20px;
    text-align: center;
}
.produtos .card-produto .card-body .feature-image {
    width: 100%;
    height: 160px;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}
.produtos .card-produto .card-body .feature-image::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, color-mix(in srgb, var(--accent-color), transparent 80%), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}
.produtos .card-produto .card-body .feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.produtos .card-produto:hover .feature-image::before {opacity: 1;}
.produtos .card-produto:hover .feature-image img {transform: scale(1.1);}
.produtos .card-produto .card-footer {padding: 15px 25px 25px;}
.produtos .card-produto .card-footer .btn-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 12px 20px;
    background: transparent;
    border: 2px solid color-mix(in srgb, var(--accent-color), transparent 70%);
    border-radius: 8px;
    color: var(--accent-color);
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}
.produtos .card-produto .card-footer .btn-more i {margin-left: 8px;font-size: 16px;transition: transform 0.3s ease;}
.produtos .card-produto .card-footer .btn-more:hover {
    background: var(--accent-color);
    color: var(--contrast-color);
    border-color: var(--accent-color);
}
.produtos .card-produto.featured .btn-more {
    background: var(--accent-color);
    color: var(--contrast-color);
    border-color: var(--accent-color);
}
.produtos .card-produto.featured .btn-more:hover {
    background: color-mix(in srgb, var(--accent-color), var(--heading-color) 20%);
    border-color: color-mix(in srgb, var(--accent-color), var(--heading-color) 20%);
}
@media (max-width: 768px) {
    .produtos .card-produto .card-header {padding: 20px 20px 10px;}
    .produtos .card-produto .card-header .icon {
        width: 60px;
        height: 60px;
        font-size: 28px;
        margin-bottom: 15px;
    }
    .produtos .card-produto .card-header h4 {font-size: 16px;}
    .produtos .card-produto .card-body {padding: 0 20px 10px;}
    .produtos .card-produto .card-body .feature-image {height: 140px;}
    .produtos .card-produto .card-footer {padding: 10px 20px 20px;}
}

/* #########################
    SESSAO DE CONTATO
   #########################*/
.contato .dados {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    padding: .5rem;
    border-radius: 40px 0 0 40px;
    height: 100%;
}
.contato .dados h3 {color: var(--contrast-color);font-size: 2rem;margin-bottom: 1rem;}
@media (max-width: 767.98px) {
    .contato .dados h3 {font-size: 1.75rem;}
}
.contato .dados p {opacity: 0.8;margin: 0;}
.contato .dados a {color: var(--contrast-color);}
@media (max-width: 992px) {
    .contato .dados {padding: 1rem;}
}
.contato .item {display: flex;gap: 1.5rem;margin-bottom: 1.5rem;}
.contato .titulo-form, .contato .item{padding: 0 2.5rem;}
.contato .item .icon {
    width: 2.8rem;
    height: 2.8rem;
    background-color: color-mix(in srgb, var(--contrast-color), transparent 85%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: 0.3s;
}
.contato .item .icon i {font-size: 1.3rem;color: var(--contrast-color);}
.contato .item:hover .icon {background-color: color-mix(in srgb, var(--contrast-color), transparent 70%);}
.contato .item .info h4 {
    color: var(--contrast-color);
    font-size: 1.25rem;
    margin-bottom: 0.3rem;
    font-weight: 700;
}
.contato .item .info p {margin-bottom: 0;font-size: 0.95rem;}
.contato .contato-form {
    background-color: var(--surface-color);
    padding: 3rem;
    border-radius: 0 40px 40px 0;
    height: 100%;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.05);
}
.contato .item .map-address{border-radius: 32px 32px 0 32px;}
@media (max-width: 992px) {
    .contato .contato-form, .contato .dados{border-radius: 40px;}
    .contato .contato-form {padding: 1rem;}
    .contato .item .map-address{border-radius: 32px;}
}
.contato .contato-form h3 {font-size: 2rem;margin-bottom: 1rem;}
@media (max-width: 768px) {
    .contato .contato-form h3 {font-size: 1.75rem;}
}
.contato .contato-form p {color: color-mix(in srgb, var(--default-color), transparent 25%);margin-bottom: 2rem;}
.contato .contato-form .form-control,
.contato .contato-form .form-select {
    padding: 0.875rem 1.25rem;
    border-color: color-mix(in srgb, var(--default-color), transparent 90%);
    border-radius: 0.5rem;
    background-color: color-mix(in srgb, var(--surface-color) 90%, white 5%);
    color: var(--default-color);
}
.contato .contato-form .form-control:focus, .contato .contato-form .form-select:focus {
    box-shadow: none;
    border-color: var(--accent-color);
}
.contato .contato-form .form-control::placeholder, .contato .contato-form .form-select::placeholder {
    color: color-mix(in srgb, var(--default-color), transparent 50%);
}

/* #########################
    SESSAO DE EQUIPE
   #########################*/
.equipe .perfil-equipe {
    background-color: var(--surface-color);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 24px color-mix(in srgb, var(--default-color), transparent 90%);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    position: relative;
    cursor: pointer;
}
.equipe .perfil-equipe:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px color-mix(in srgb, var(--accent-color), transparent 85%);
}
.equipe .perfil-equipe:hover .avatar img {transform: scale(1.05);}
.equipe .perfil-equipe:hover .contatos {opacity: 1;transform: translateY(0);}
.equipe .avatar {position: relative;height: 320px;overflow: hidden;}
.equipe .avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.equipe .cargo {
    position: absolute;
    top: 20px;
    right: 0;
    background-color: var(--accent-color);
    color: var(--contrast-color);
    padding: 6px 15px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 4px 0 0 4px;
    box-shadow: -2px 3px 8px rgba(0, 0, 0, 0.1);
}
.equipe .contatos {
    position: absolute;
    top: 20px;
    left: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}
.equipe .contatos a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: var(--contrast-color);
    color: var(--accent-color);
    border-radius: 50%;
    font-size: 16px;
    transition: 0.3s;
}
.equipe .contatos a:hover {background-color: var(--accent-color);color: var(--contrast-color);transform: scale(1.1);}
.equipe .dados {padding: 25px 20px;}
.equipe .dados h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--heading-color);
    transition: color 0.3s ease;
}
.equipe .dados p {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 0;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
}
@media (max-width: 992px) {
    .equipe .avatar {height: 280px;}
}
@media (max-width: 768px) {
    .equipe .avatar {height: 250px;}
    .equipe .dados {padding: 20px 15px;}
    .equipe .dados h4 {font-size: 18px;}
    .equipe .dados p {font-size: 14px;}
}

/* ========== [ ESTILOS DE EXIBIÇÃO DE PRODUTOS ] ==========*/
/* #########################
    DETALHES DO PRODUTOS
   #########################*/
.detalhamento .info-produto{
    background: #f3f3f3;
    border-radius: 20px;
    border: 2px solid color-mix(in srgb, var(--default-color), transparent 92%);
    padding: 15px 15px 0;
}
.detalhamento .info-produto h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 22px;
    position: relative;
    text-align: center;
}
.detalhamento .info-produto h3:after {
    content: "";
    position: relative;
    display: block;
    width: 125px;
    height: 3px;
    background: var(--accent-color);
    top: 5px;
    margin: 0 auto;
}
.detalhamento .info-produto ul {list-style: none;padding: 0;font-size: 15px;}
.detalhamento .info-produto ul li {display: flex;flex-direction: column;padding-bottom: 14px;}
.detalhamento .info-produto ul strong {
    text-transform: uppercase;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    font-size: 14px;
}
.detalhamento .info-produto .btn-contratacao {
    padding: 8px 40px;
    background: var(--accent-color);
    color: var(--contrast-color);
    border-radius: 50px;
    transition: 0.3s;
    margin: 0 auto;
    margin-top: 5px;
}
.detalhamento .info-produto .btn-contratacao:hover {
    background: color-mix(in srgb, var(--secondary-color), transparent 20%);
    color: black;
}
.detalhamento .detalhar-produto h2 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--accent-color);
}
.detalhamento .detalhar-produto p {padding: 0;}
.detalhamento .detalhar-produto p{text-align: left !important;}
.detalhamento .detalhar-produto h2{text-align: center !important;}
.sidebar-fixed {position: sticky;top: 100px;height: fit-content;margin-top: 73px;}
.detalhamento .detalhar-produto .clear{clear: both;}
.detalhamento .detalhar-produto .full-content{text-align: center; padding: 1rem .7rem .1rem .7rem}
.detalhamento .detalhar-produto .full-content img{margin: 0 0 12px 0;}
.detalhamento .detalhar-produto .left-content, .detalhamento .detalhar-produto .right-content{
    padding: 1rem .7rem .1rem .7rem;
    border-radius: 20px;
}
.detalhamento .detalhar-produto .left-content{background-color: #f8faff;margin-bottom: 5px;}
.detalhamento .detalhar-produto .left-content img, .detalhamento .detalhar-produto .right-content img{
    max-width: 500px;
    height: auto;
}
.detalhamento .detalhar-produto .left-content img {float: left;margin: 0 24px 6px 0;}
.detalhamento .detalhar-produto .right-content img {float: right;margin: 0 0 6px 24px;}
@media (max-width: 1199px) {
    .detalhamento .detalhar-produto .left-content, .detalhamento .detalhar-produto .right-content{text-align: center;}
    .detalhamento .detalhar-produto .left-content img, .detalhamento .detalhar-produto .right-content img {
        max-width: 100%;
        float: initial;
        margin: 0 0 12px 0;
    }
}

@media (max-width: 991px) {
    .sidebar-fixed {position: static;margin-top: 2rem;}
}

/* #########################
    TÓPICOS DE PRODUTOS
   #########################*/
.destaques .destaques-grid {margin: 27px 0 0;}
.destaques .destaques-grid .item {
    background-color: var(--surface-color);
    padding: 30px;
    border-radius: 40px;
    height: 100%;
    transition: all 0.3s ease;
    border: 2px solid color-mix(in srgb, var(--default-color), transparent 92%);
    display: flex;
    flex-direction: column;
}
.destaques .destaques-grid .item:hover{
    border-color: color-mix(in srgb, var(--accent-color), transparent 70%);
    background: color-mix(in srgb, var(--accent-color), transparent 92%);
}
.destaques .destaques-grid .item .icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), var(--secondary-color) 20%));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.destaques .destaques-grid .item .icon::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), var(--secondary-color) 20%));
    opacity: 0.2;
    transform: scale(1.3);
    z-index: -1;
}
.destaques .destaques-grid .item .icon i {font-size: 32px;color: var(--contrast-color);}
.destaques .destaques-grid .item h4 {font-size: 20px;font-weight: 600;margin-bottom: 15px;}
.destaques .destaques-grid .item p {
    font-size: 15px;
    line-height: 1.6;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    margin-bottom: auto;
}
.destaques .destaques-grid .item .indice {
    width: 100%;
    height: 4px;
    background-color: color-mix(in srgb, var(--default-color), transparent 90%);
    border-radius: 2px;
    margin-bottom: 10px;
    margin-top: auto;
}
.destaques .destaques-grid .item .indice .progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--accent-color), color-mix(in srgb, var(--accent-color), var(--secondary-color) 30%));
    border-radius: 2px;
    transition: width 1s ease;
    margin-bottom: 3px;
}
.destaques .destaques-grid .item .progress-label {
    font-size: 16px;
    font-weight: 600;
    color: var(--accent-color);
}

/* ========== [ ESTILOS DE EXIBIÇÃO DE FAQ ] ==========*/
/* #########################
        FAQ DO SITE
   #########################*/
.question {
    font-weight: 700;
    color: var(--accent-color);
}

/* ========== [ ANIMATIONS ] ==========*/
#animation-changer {
    transition: opacity 0.6s ease-in-out;
}

/* ========== [ block contets view ] ==========*/
.block-all-contents-after ~ .left-content,
.block-all-contents-after ~ .full-content,
.block-all-contents-after ~ .right-content {
    display: none !important;
}