/* ============================================================
   Soluções — Estilos Compartilhados
   ============================================================ */

.pg-solutions {
    background-color: #fff;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* --- Hero Section --- */
.sl-hero {
    height: 450px;
    display: flex;
    align-items: center;
    position: relative;
    background-size: cover;
    background-position: center;
    color: #fff;
}
.sl-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(10, 15, 50, 0.85) 0%, rgba(10, 15, 50, 0.4) 100%);
}
.sl-hero__content {
    position: relative;
    z-index: 1;
    max-width: 700px;
}
.sl-hero h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.1;
    letter-spacing: -1px;
}
.sl-hero p {
    font-size: 20px;
    opacity: 0.9;
    font-weight: 400;
}

/* --- Benefits Section --- */
.sl-benefits {
    padding: 80px 0;
    background-color: #fff;
}
.sl-benefits__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}
.sl-benefits__item {
    text-align: center;
    padding: 20px;
}
.sl-benefits__icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0f2f8;
    border-radius: 50%;
    color: #e53935;
}
.sl-benefits__icon svg {
    width: 30px;
    height: 30px;
}
.sl-benefits__text {
    font-size: 15px;
    color: #444;
    line-height: 1.5;
    font-weight: 500;
}

/* --- Catchy CTA --- */
.sl-cta-box {
    padding: 60px 0;
    background: #f8f9fb;
    text-align: center;
}
.sl-cta-box h2 {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 20px;
}
.sl-cta-box p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 16px;
    color: #666;
    line-height: 1.7;
}

/* --- The Tradesparq Difference --- */
.sl-diff {
    padding: 100px 0;
    background-color: #1a1a2e;
    color: #fff;
}
.sl-diff__title {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 60px;
}
.sl-diff__grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}
.sl-diff__card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 30px 20px;
    flex: 1 1 200px;
    max-width: 220px;
    text-align: center;
    transition: transform 0.3s, background 0.3s;
}
.sl-diff__card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.1);
    border-color: #e53935;
}
.sl-diff__icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 20px;
    filter: brightness(0) invert(1);
    opacity: 0.8;
}
.sl-diff__card h4 {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
}

/* --- Final CTA --- */
.sl-final {
    padding: 100px 0;
    text-align: center;
    background: url('../images/home/footerBg.jpg') center/cover no-repeat;
    color: #fff;
    position: relative;
}
.sl-final::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(10, 15, 50, 0.7);
}
.sl-final__content {
    position: relative;
    z-index: 1;
}
.sl-final h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 30px;
}
.sl-final__btns {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* --- Responsivo --- */
@media (max-width: 768px) {
    .sl-hero h1 { font-size: 36px; }
    .sl-hero { height: 350px; text-align: center; }
    .sl-hero::before { background: rgba(10, 15, 50, 0.7); }
    .sl-diff__card { max-width: 100%; flex: 1 1 160px; }
    .sl-final h2 { font-size: 28px; }
    .sl-final__btns { flex-direction: column; align-items: center; }
}
