.tab-image {
    opacity: 0;
    visibility: hidden;
    max-height: 0;
    transform: translateY(30px);
    transition: opacity 1.3s ease, transform 0.5s ease, visibility 0.5s;
    position: absolute;
    top: 0;
    left: 0;
}

.tab-image.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    position: relative;
    max-height: 100%;
}

@keyframes progressBar {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}

.tab-solution-item {
    position: relative;
    padding-bottom: 20px !important;
    border-bottom: 2px solid transparent;
    cursor: pointer;
}

.tab-solution-item::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    height: 2px;
    width: 0;
    background-color: #7ed957;
    pointer-events: none;
    transition: width 0.3s;
}

.tab-solution-item.progress-anim::after {
    animation: progressBar 14s linear forwards;
}

.tab-solution-item:hover.progress-anim::after {
    animation-play-state: paused;
}

.tab-solution-item:is(.active),
.tab-solution-item:hover {
    border-color: #D9D9D9;
}

.tab-solution-item:is(.active) .txt--conteudo .elementor-heading-title,
.tab-solution-item:hover .txt--conteudo .elementor-heading-title {
    color: var(--e-global-color-primary) !important;
}

.tab-solution-item:is(.active) .icon-number,
.tab-solution-item:hover .icon-number {
    background-color: var(--e-global-color-secondary) !important;
}

.tab-solution-item:is(.active) .icon-number .txt-number p,
.tab-solution-item:hover .icon-number .txt-number p {
    color: #fff !important;
}

.tab-solution-item .icon-number {
    height: 46px !important;
    min-width: 56px !important;
    max-width: 56px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #e5f0ff;
    border-radius: 6px;
    transition: all 0.35s ease-in-out;
}

.tab-solution-item .icon-number .txt-number p {
    transition: all 0.35s ease-in-out;
}

.tab-solution-item .txt--conteudo .elementor-heading-title {
    transition: all 0.35s ease-in-out !important;
}

/*Casos*/

.card-case .icon-case {
    border-radius: 8px;
    width: 45px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.card-case .icon-case .elementor-icon-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.cases-carousel .swiper-pagination {
    color: #bcbcbc !important;
}

.cases-carousel .swiper-pagination .swiper-pagination-current {
    color: var(--e-global-color-secondary);
}

.cases-carousel .elementor-swiper-button svg path {
    stroke: var(--e-global-color-secondary);
    transition: all 0.25s ease-in-out;
}

.cases-carousel .elementor-swiper-button:is(.swiper-button-disabled) {
    opacity: 1 !important;
}

.cases-carousel .elementor-swiper-button:is(.swiper-button-disabled) svg path {
    stroke: #bcbcbc !important;
}

.card-case {
    transition: all 0.25s ease-in-out;
    border: solid 1px;
    border-color: transparent;
}

.card-case:hover {
    border-color: var(--e-global-color-secondary);
}

/*Cases*/
.cases-container {
    display: flex;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .cases-container {
        flex-direction: column;
        justify-content: center;
        align-content: center;
        align-items: center;
    }
}

.cases-tabs {
    display: flex;
    flex-direction: row;
    align-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    width: 60%;
}

@media (max-width: 768px) {
    .cases-tabs {
        gap: 15px;
    }
}

@media (max-width: 1024px) {
    .cases-tabs {
        width: 50%;
    }
}

@media (max-width: 768px) {
    .cases-tabs {
        width: 100%;
        justify-content: center;
    }
}

.case-tab {
    padding: 1rem;
    border: 1px solid rgba(188, 188, 188, 0.38);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    height: 150px;
    max-height: 150px !important;
    width: 180px;
    min-width: 180px !important;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media (max-width: 768px) {
    .case-tab {
        height: 100px;
    }

    .case-tab img {
        width: 70% !important;
    }
}

.case-tab img {
    filter: grayscale(100%) brightness(1.2) contrast(0.6);
    opacity: 0.5;
    transition: filter 0.3s ease, opacity 0.3s ease;
}

.case-tab.active {
    opacity: 1;
    background-color: #fff;
    border-color: transparent;
    box-shadow: rgba(149, 157, 165, 0.2) 0 8px 24px;
}

.case-tab.active img {
    filter: none;
    opacity: 1;
}

.case-tab img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.cases-content {
    flex: 1;
    position: relative;
}

.case-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s ease;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: rgba(149, 157, 165, 0.08) 0 8px 24px;
}

.case-content.visible {
    position: relative;
    visibility: visible;
    transform: translateY(0);
    opacity: 1;
}

.case-image {
    position: relative;
    height: 250px;
    background-size: cover;
    background-position: center;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.case-featured-logo {
    max-width: 150px;
    max-height: 80px;
    object-fit: contain;
}

.case-info {
    margin-top: 15px;
    padding: 0 20px 20px;
}

.case-info .case-title {
    margin: 0 0 1rem;
    font-size: 18px;
    font-weight: 700;
    position: relative;
    color: var(--e-global-color-secondary);
}

.case-info .case-title:before {
    content: "";
    background-color: var(--e-global-color-secondary);
    width: 30px;
    height: 3px;
    position: absolute;
    left: -40px;
    top: 12px;
}

.case-info .case-description {
    font-size: 16px;
    color: #535335;
    line-height: 20px;
}

.case-link {
    display: inline-flex;
    align-items: center;
    align-content: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--e-global-color-secondary);
    border: solid 1px var(--e-global-color-secondary);
    padding: 8px 10px;
    border-radius: 100px;
    text-decoration: none;
    margin-top: 1rem;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.25s ease-in-out;
}

.case-link:hover {
    background-color: var(--e-global-color-secondary);
    color: #fff;
}

.case-link svg {
    transition: transform 0.3s ease;
}

.case-link:hover svg {
    transform: translateX(3px);
}

/*plans*/
.plans {
    display: flex;
    justify-content: center !important;
    align-items: center !important;
}

.plans .plan {
    height: 260px;
    overflow: hidden;
    transition: all 0.6s ease-in-out;
}

@media (max-width: 1024px) {
    .plans .plan {
        height: 300px;
    }
}

.plans .plan .plan-content .elementor-icon-box-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.plans .plan .plan-content .elementor-icon-box-wrapper .elementor-icon-box-content p {
    margin: 0;
}

.plans .plan .plan-content svg path {
    stroke: var(--e-global-color-primary);
    transition: stroke 0.25s ease-in-out;
}

.plans .plan .plan-button {
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease, transform 0.3s ease;
    pointer-events: none;
}

.plans .plan .plan-button a {
    padding: 0 !important;
    transition: all 0.3se ease-in-out !important;
}

.plans .plan.active {
    transform: scale(1.05);
    height: auto;
    background-color: var(--e-global-color-primary) !important;
}

.plans .plan.active p {
    color: #fff !important;
}

.plans .plan.active path,
.plans .plan.active svg {
    color: var(--e-global-color-primary) !important;
    stroke: var(--e-global-color-primary) !important;
}

.plans .plan.active .plan-button:hover path,
.plans .plan.active .plan-button:hover svg {
    color: var(--e-global-color-accent) !important;
    stroke: var(--e-global-color-accent) !important;
}

.plans .plan.active .plan-button {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.plans .plan.active .plan-button a {
    padding: 18px 13px !important;
}

/*glow*/
.glow-background-home,
#afiliados {
    overflow-x: hidden !important;
    overflow-y: clip;
}

.glow-background-home::before {
    content: '';
    position: absolute;
    top: 0;
    width: 2000px;
    height: 100%;
    left: unset !important;
    right: -800px;
    background-position: right !important;
    background: radial-gradient(circle, #ebf0f9 0%, #f9f9f9 80%);
    filter: blur(80px);
    z-index: 0;
}

#afiliados::before {
    content: '';
    position: absolute;
    top: 25%;
    width: 2000px;
    height: 100%;
    left: unset !important;
    right: -800px;
    background-position: right !important;
    background: radial-gradient(circle, #ebf0f9 0%, #f9f9f9 80%);
    filter: blur(80px);
    z-index: 0;
}

@media (max-width: 1024px) {
    #afiliados::before {
        display: none;
    }
}

.bg-glow-2 {
    height: 100%;
    width: 2000px;
    left: -1000px !important;
    top: 0 !important;
    bottom: 0 !important;
    background-position: right !important;
    background: radial-gradient(circle, #ebf0f9 0%, #f9f9f9 100%);
    z-index: 0;
    filter: blur(80px);
}

.bg-glow-3 {
    height: 100% !important;
    width: 1800px !important;
    left: -700px !important;
    top: -20% !important;
    background-position: right !important;
    background: radial-gradient(circle, #ebf0f9 0%, #f9f9f9 80%) !important;
    filter: blur(80px) !important;
    z-index: 0 !important;
}

@media (max-width: 1024px) {
    .bg-glow-3 {
        display: none !important;
    }
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    visibility: hidden;
    opacity: 0;
    transition: all 0.8s ease-in-out !important;
    padding-inline: 20px;
}

.faq-item.active .faq-content {
    max-height: 800px;
    visibility: visible;
    opacity: 1;
    transition: all 0.8s ease-in-out !important;
}

.plus-icon,
.minus-icon {
    display: none;
    height: 25px;
}

@media (max-width: 768px) {

    .plus-icon,
    .minus-icon {
        height: 18px;
    }
}

.plus-icon.active {
    display: block;
}

.minus-icon.active {
    display: block;
}

.faq-container .faq-item {
    border-radius: 7px;
    background: rgba(221, 221, 221, 0.6);
    transition: all 0.8s ease-in-out !important;
    gap: 0;
}

.faq-container .faq-item p {
    color: var(--e-global-color-primary) !important;
}

.faq-container .faq-item:is(.active) {
    background: var(--e-global-color-primary);
    transition: all 0.8s ease-in-out !important;
}

.faq-container .faq-item:is(.active) p {
    color: #fff !important;
}

.faq-container .faq-header {
    cursor: pointer;
    padding: 20px 15px;
    transition: all 0.8s ease-in-out;
}

/*find*/
.tab-img-find {
    transition: all 0.25s ease !important;
    overflow: hidden;
    visibility: hidden;
    opacity: 0;
    max-height: 0;
}

.tab-img-find:is(.active) {
    max-height: 450px;
    visibility: visible;
    opacity: 1;
}

.tab-item-find {
    transition: all 0.25s ease-in-out;
    cursor: pointer !important;
}

.tab-item-find:is(.active) {
    border-left-color: var(--e-global-color-secondary) !important;
}

.tab-item-find:is(.active) p {
    color: var(--e-global-color-primary) !important;
}

.tab-item-find:is(.active) .tab-descript-text p {
    color: #535353 !important;
}