/* ================= ABOUT HERO ================= */

.about-hero{
    padding:20px 0;
    background:#fff;
}

.about-pill{
    display:inline-block;
    padding:8px 16px;
    border-radius:999px;
    background:rgba(138,31,164,.08);
    color:var(--primary);
    font-weight:600;
    font-size:13px;
    margin-bottom:18px;
}

.about-hero h1{
    font-size:44px;
    font-weight:800;
    line-height:1.1;
    color:#111827;
}

.about-hero p{
    margin-top:20px;
    color:#6b7280;
    font-size:17px;
}

.about-actions{
    margin-top:30px;
    display:flex;
    gap:12px;
    flex-wrap:wrap;
}

/* ================= IMAGEM ================= */

.about-image-wrap{
    position:relative;
}

.about-img{
    width:100%;
    border-radius:24px;
    box-shadow:0 25px 60px rgba(0,0,0,.10);
}

/* ================= STORY ================= */

.about-story h2{
    font-size:36px;
    font-weight:800;
    margin-bottom:20px;
}

.about-list{
    margin-top:20px;
    list-style:none;
    padding:0;
    display:flex;
    flex-direction:column;
    gap:12px;
}

.about-list li{
    display:flex;
    gap:10px;
    align-items:center;
    color:#374151;
}

.about-list i{
    color:var(--primary);
}

/* ================= DIFFERENTIAL ================= */

.about-diff{
    padding:100px 0;
    background:#f8fafc;
}

.diff-card{
    background:#fff;
    padding:35px;
    border-radius:24px;
    border:1px solid #e5e7eb;
    transition:.3s;
    height:100%;
}

.diff-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 50px rgba(0,0,0,.08);
    border-color:var(--primary);
}

.diff-card i{
    font-size:30px;
    color:var(--primary);
    margin-bottom:15px;
}

.diff-card h4{
    font-weight:700;
    margin-bottom:10px;
}

/* ================= CTA ================= */

.about-cta{
    padding:100px 0;
    background:#fff;
}

.cta-box{
    background:linear-gradient(135deg,#0f172a,#1e293b);
    color:#fff;
    padding:70px;
    border-radius:30px;
    text-align:center;
}

.cta-box h2{
    font-size:38px;
    font-weight:800;
    margin-bottom:15px;
}

.cta-box p{
    color:rgba(255,255,255,.75);
    max-width:600px;
    margin:0 auto 25px;
}

/* ================= GERAL ================= */

.section-tag{
    display:inline-flex;
    align-items:center;
    padding:8px 16px;
    border-radius:999px;
    background:rgba(138,31,164,.08);
    color:var(--primary);
    font-size:13px;
    font-weight:600;
    margin-bottom:18px;
}

.section-center{
    text-align:center;
    max-width:760px;
    margin:0 auto 70px;
}

.section-center h2{
    font-size:42px;
    font-weight:800;
    color:#111827;
    margin-bottom:15px;
}

.section-center p{
    color:#6b7280;
    font-size:17px;
}

.about-image{
    width:100%;
    border-radius:24px;
    display:block;
    box-shadow:0 25px 60px rgba(0,0,0,.10);
}

/* ================= PROCESS ================= */

.work-process{
    padding:120px 0;
    background:#f8fafc;
}

.process-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.process-item{
    background:#fff;
    border-radius:24px;
    padding:40px;
    border:1px solid #e5e7eb;
    transition:.3s;
}

.process-item:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 40px rgba(0,0,0,.06);
}

.process-number{
    font-size:52px;
    font-weight:800;
    color:rgba(138,31,164,.12);
    display:block;
    margin-bottom:15px;
}

.process-item h3{
    font-size:22px;
    font-weight:700;
    margin-bottom:10px;
    color:#111827;
}

.process-item p{
    color:#6b7280;
    margin:0;
}

/* ================= MVV ================= */

.mvv{
    padding:120px 0;
    background:#fff;
}

.mvv-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.mvv-card{
    background:#fff;
    border:1px solid #e5e7eb;
    border-radius:24px;
    padding:45px;
    text-align:center;
    transition:.3s;
}

.mvv-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 50px rgba(0,0,0,.08);
}

.mvv-card i{
    font-size:42px;
    color:var(--primary);
    margin-bottom:20px;
}

.mvv-card h3{
    font-size:24px;
    font-weight:700;
    margin-bottom:12px;
}

.mvv-card p{
    color:#6b7280;
    margin:0;
}

/* ================= STRUCTURE ================= */

.about-structure{
    padding:120px 0;
    background:#f8fafc;
}

.structure-content h2{
    font-size:42px;
    font-weight:800;
    line-height:1.2;
    margin-bottom:20px;
    color:#111827;
}

.structure-content p{
    color:#6b7280;
    margin-bottom:25px;
}

.structure-content ul{
    list-style:none;
    padding:0;
    margin:0;
}

.structure-content li{
    position:relative;
    padding-left:28px;
    margin-bottom:15px;
    color:#374151;
    font-weight:500;
}

.structure-content li::before{
    content:"✓";
    position:absolute;
    left:0;
    color:var(--primary);
    font-weight:700;
}

/* ================= RESPONSIVO ================= */

@media(max-width:991px){

    .process-grid,
    .mvv-grid{
        grid-template-columns:1fr;
    }

    .section-center h2,
    .structure-content h2,
    .about-story h2{
        font-size:32px;
    }

    .work-process,
    .mvv,
    .about-structure,
    .about-story,
    .about-cta{
        padding:80px 0;
    }
}

.btn-whatsapp{
    background:#25D366;
    color:#fff;
    padding:16px 28px;
    border-radius:12px;
    display:inline-flex;
    align-items:center;
    gap:10px;
    font-weight:600;
    transition:.3s;
    text-decoration:none;
}

.btn-whatsapp:hover{
    background:#1ebe5d;
    transform:translateY(-3px);
    color:#fff;
}

.btn-whatsapp i{
    font-size:22px;
}

/* ===================================================
   CELULARES PEQUENOS
=================================================== */

@media (max-width:480px){

    .page-hero{
        padding:80px 0 60px;
    }

    .page-hero h1{
        font-size:1.75rem;
    }

    .products-section-title h2,
    .cta-box h2{
        font-size:1.75rem;
    }

    .brand-item{
        width:100%;
    }

    .catalog-image{
        height:190px;
    }

    .catalog-content h3{
        font-size:1.2rem;
    }

}