/*     
 Theme Name: Lucitec
 Author Name:Lucineia Chagas
 */
/*
==========================================================
 Theme Name: Lucitec
 Author: Lucinéia Chagas
==========================================================
*/

/* ======================================================
   CTA FINAL
====================================================== */

.cta-final-vitrine{
    padding:100px 20px;
    background:linear-gradient(135deg,#08a39b,#0f6ab8);
    color:#fff;
    text-align:center;
}

.cta-final-container{
    max-width:850px;
    margin:0 auto;
}

.cta-final-container span{
    display:inline-block;
    padding:8px 18px;
    background:rgba(255, 255, 255, 0.18);
    border:1px solid rgba(255, 255, 255, 0.25);
    border-radius:30px;
    font-size:.9rem;
    margin-bottom:20px;
    backdrop-filter:blur(8px);
}

.cta-final-container h2{
    font-size:2.4rem;
    line-height:1.3;
    margin-bottom:25px;
    font-weight:700;
    color: #fff;
}

.cta-final-container p{
    font-size:1.05rem;
    line-height:1.9;
    max-width:700px;
    margin:0 auto 45px;
    opacity:.95;
    color: #fff;
}


/* ======================================================
   RESPONSIVO
====================================================== */

@media (max-width:992px){

    #por-que-lucitec,
    .cta-final-vitrine{
        padding:80px 20px;
    }

    .beneficios-grid{
        grid-template-columns:1fr;
    }

}

@media (max-width:768px){

    .section-header{
        margin-bottom:50px;
    }

    .beneficio-card{
        padding:35px 28px;
    }

    .beneficio-card i{
        width:70px;
        height:70px;
        font-size:1.8rem;
    }

    .cta-final-container h2{
        font-size:1.9rem;
    }

    .cta-buttons{
        flex-direction:column;
        align-items:center;
    }

    .btn-primary,
    .btn-secondary{
        width:100%;
        max-width:320px;
        text-align:center;
    }

}



/* ======================================================
   NÚMEROS LUCITEC
====================================================== */

.numeros-lucitec{
    padding:90px 20px;
    background:linear-gradient(135deg,#0f172a,#16213e);
    color:#ffffff;
}

.numeros-lucitec .container{
    max-width:1200px;
    margin:0 auto;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:30px;
}

.numero{
    background:rgba(255,255,255,.06);
    border:1px solid rgba(255,255,255,.08);
    backdrop-filter:blur(10px);
    border-radius:22px;
    padding:40px 25px;
    text-align:center;
    transition:.35s ease;
}

.numero:hover{
    transform:translateY(-8px);
    background:rgba(255,255,255,.10);
    box-shadow:0 20px 45px rgba(0,0,0,.25);
}

.numero h3{
    font-size:3rem;
    font-weight:700;
    color:#ffffff;
    margin-bottom:15px;
    line-height:1;
}

.numero p{
    color:rgba(255,255,255,.85);
    font-size:1rem;
    line-height:1.7;
    margin:0;
}

/* Destaque dos números */

.numero:nth-child(1) h3,
.numero:nth-child(2) h3{
    color:#34d399;
}

.numero:nth-child(3) h3{
    color:#60a5fa;
}

.numero:nth-child(4) h3{
    color:#fbbf24;
}

/* Responsivo */

@media (max-width:768px){

    .numeros-lucitec{
        padding:70px 20px;
    }

    .numeros-lucitec .container{
        gap:20px;
    }

    .numero{
        padding:35px 20px;
    }

    .numero h3{
        font-size:2.3rem;
    }

    .numero p{
        font-size:.95rem;
    }

}