.hero-section {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, rgba(6, 1, 28, 0.881) 0%, rgba(65, 12, 12, 0.137) 100%),
        url('/assets/imagens/img-company-futurasoft-img-hero-section.jpg') no-repeat center center;
    background-size: cover;
    color: white;
    /* Para garantir contraste com o fundo */
    display: flex;
    align-items: center;
    justify-content: center;
    /* text-align: left; */
    padding: 10rem 2rem;
}

/* Opcional: Efeito de sobreposição adicional */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 75% 10%, rgba(97, 65, 240, 0.112) 0%, rgba(97, 65, 240, 0.683) 70%);
    z-index: 1;
}

/* Se você tiver conteúdo dentro do hero, adicione: */
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1050px;
    margin: 0 auto;
    color: #fff;
}


/* BTN */
.cta-btn-hero {
    color: #fff;
    padding: .7rem 2rem;
    color: #6141f0;
    background-color: #fff;
    transition: .3s;
}

.cta-btn-hero:hover {
    background-color: #6141f0c1;
    border: #fff 1px solid;
    transition: .3s;
}






/* ============SESSAO NOSSOS SERVICOES============= */
.nosso-servicos {
    /* margin-bottom: 2rem; */
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.nosso-servicos .item-servico p {
    font-size: 16px;
}

.hover-effect {
    transition: .3s;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-effect:hover {
    /* transform: translateY(-3px); */
    border: 1px solid #6141f0;
    transition: .3s;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
}

.icon-box {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nosso-servicos {
    position: relative;
    overflow: hidden;
}



/* ============SESSAO NOSSOS CLIENTES============= */
.sessao-cliente-parceiros {
    /* border: 1px solid red; */
    padding: 1.5rem 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-bottom: 2rem;
    /* background-color: #6141f0; */
}

.sessao-cliente-parceiros .item-cliente {
    transition: .3s;
    margin: 10px 0;
}

.sessao-cliente-parceiros .item-cliente:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    transform: scale(1.001);
    transition: .3s;
}

.sessao-cliente-parceiros .item-cliente .img-cliente {
    min-width: 100px;
    height: 70px;
    margin: 5px .5rem;
    /* padding: 5px; */
    /* border: 1px solid red; */
}



/* =====================SESSAO CTA PRINCIPAL=========================== */

.sessao-cta-home {
    /* background: linear-gradient(135deg, var(--primary-dark) 0%, #1a1533 100%); */
    background-image: linear-gradient(135deg, #6141f0 0%, #3a1c8a 100%);
    color: var(--text-light);
    position: relative;
    overflow: hidden;
    min-height: 65vh;
    padding: 5rem 0;
}

.sessao-cta-home::before {
    content: '';
    position: absolute;
    pointer-events: none; /* ← Isto aqui resolve */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxwYXR0ZXJuIGlkPSJwYXR0ZXJuIiB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHBhdHRlcm5Vbml0cz0idXNlclNwYWNlT25Vc2UiIHBhdHRlcm5UcmFuc2Zvcm09InJvdGF0ZSg0NSkiPjxyZWN0IHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCIgZmlsbD0icmdiYSgyNTUsMjU1LDI1NSwwLjAzKSIvPjwvcGF0dGVybj48L2RlZnM+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNwYXR0ZXJuKSIvPjwvc3ZnPg==');
    opacity: 0.5;
}


.bg-gradient-start {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
}

.bg-pattern {
    background-image: radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 20%);
}

.cta-illustration {
    transform: perspective(1000px) rotateY(-10deg);
    transition: transform 0.5s ease;
}

.cta-illustration:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.btn-primary {
    background-color: #fff;
    color: #6141f0;
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #6141f0;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid #fff;
}

.btn-outline-light:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.text-white-80 {
    color: rgba(255, 255, 255, 0.8);
}




/* ===============ESTATISTICAS E DEPOIMENTOS========== */
.stats-testimonials-section {
    background-color: #f8f9fa;
}

.stats-container {
    margin-top: -80px;
    border: 3px solid #6141f0;
}

.stat-card {
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.testimonials-wrapper {
    position: relative;
    overflow: hidden;
}

.testimonials-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 40%);
}

.testimonial-card {
    transition: all 0.3s ease;
    border: 1px solid rgba(97, 65, 240, 0.1);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
    border-color: rgba(97, 65, 240, 0.3);
}

.divider {
    width: 80px;
    height: 3px;
}

.testimonial-text {
    position: relative;
    padding-left: 20px;
}

.testimonial-text::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -10px;
    font-size: 40px;
    color: rgba(97, 65, 240, 0.1);
    font-family: serif;
    line-height: 1;
}






















/* Mobile Styles */
@media (max-width: 767.98px) {
    .hero-section {
        min-height: 90vh;
        padding: 8rem .5rem;
        text-align: center;
    }

    .cta-btn-hero {
        font-size: auto;
        padding: 10px 1.5rem;
    }


    /* Estatisticas */
    .container-estatistica {
        margin: 0;
    }
}