/* =========================================================
   WUPWUI SOFTWARES
   Arquivo: assets/css/solutions.css
   Bloco: Soluções
========================================================= */


/* ================================
   SEÇÃO SOLUÇÕES
================================ */

.solutions-section {
    background: #f4f5f7;
    padding: 70px 0 65px;
    overflow: hidden;
}

.solutions-section .container {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 56px;
}


/* ================================
   GRID DOS CARDS
================================ */

.solutions-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
    align-items: stretch;
    justify-content: center;
}


/* ================================
   CARD
================================ */

.solution-card {
    width: 100%;
    min-height: 355px;
    background: linear-gradient(180deg, #ffffff 0%, #f7f7f8 100%);
    border: 1px solid rgba(15, 23, 42, 0.10);
    border-radius: 18px;
    padding: 38px 30px 34px;
    box-shadow: 0 22px 45px rgba(15, 23, 42, 0.10);
    text-align: center;
    position: relative;
    overflow: hidden;
    transition:
        transform 0.28s ease,
        box-shadow 0.28s ease,
        border-color 0.28s ease,
        background 0.28s ease;
}

.solution-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 32px 65px rgba(15, 23, 42, 0.18);
    border-color: rgba(212, 160, 23, 0.42);
}


/* detalhe dourado inferior */
.solution-card::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 68px;
    height: 5px;
    background: linear-gradient(90deg, #c89116, #f2c94c, #c89116);
    border-radius: 999px 999px 0 0;
    transform: translateX(-50%);
    transition:
        width 0.28s ease,
        box-shadow 0.28s ease;
}

.solution-card:hover::after {
    width: 92px;
    box-shadow: 0 0 18px rgba(242, 201, 76, 0.65);
}


/* brilho interno discreto */
.solution-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top center, rgba(255, 255, 255, 0.88), transparent 44%),
        radial-gradient(circle at bottom center, rgba(212, 160, 23, 0.08), transparent 45%);
    pointer-events: none;
    opacity: 0.85;
}

.solution-card > * {
    position: relative;
    z-index: 1;
}


/* ================================
   ÍCONES
================================ */

.icon-circle {
    width: 92px;
    height: 92px;
    margin: 0 auto 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;

    background:
        radial-gradient(circle at 35% 25%, #3a414b 0%, #1d232c 38%, #090d13 100%);

    border: 6px solid #3b424c;
    box-shadow:
        0 16px 30px rgba(15, 23, 42, 0.28),
        inset 0 0 18px rgba(255, 255, 255, 0.06);

    color: #f1f5f9;
    font-size: 31px;
    font-weight: 900;
    letter-spacing: -1px;

    transition:
        transform 0.28s ease,
        box-shadow 0.28s ease,
        border-color 0.28s ease,
        color 0.28s ease;
}

.solution-card:hover .icon-circle {
    transform: translateY(-3px) scale(1.04);
    border-color: #d4a017;
    box-shadow:
        0 20px 38px rgba(15, 23, 42, 0.34),
        0 0 22px rgba(212, 160, 23, 0.24),
        inset 0 0 20px rgba(255, 255, 255, 0.08);
}

.silver-icons .icon-circle {
    color: #f8fafc;
    text-shadow:
        0 0 10px rgba(255, 255, 255, 0.35),
        0 0 20px rgba(148, 163, 184, 0.25);
}


/* ================================
   TEXTOS DO CARD
================================ */

.solution-card h3 {
    margin: 0 0 24px;
    font-size: 25px;
    line-height: 1.16;
    color: #020617;
    font-weight: 900;
    letter-spacing: -0.8px;
}

.solution-card ul {
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: left;
}

.solution-card li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    color: #53617a;
    font-size: 16px;
    line-height: 1.35;
}

.solution-card li:last-child {
    margin-bottom: 0;
}

.solution-card li::before {
    content: "✓";
    flex: 0 0 auto;
    color: #d79600;
    font-weight: 900;
}


/* ================================
   RESPONSIVO
================================ */

@media (max-width: 1100px) {
    .solutions-section .container {
        padding: 0 28px;
    }

    .solutions-grid {
        gap: 22px;
    }

    .solution-card {
        padding: 34px 24px 32px;
    }

    .solution-card h3 {
        font-size: 22px;
    }

    .solution-card li {
        font-size: 15px;
    }
}


@media (max-width: 860px) {
    .solutions-section {
        padding: 58px 0;
    }

    .solutions-grid {
        grid-template-columns: 1fr;
        max-width: 520px;
        margin: 0 auto;
    }

    .solution-card {
        min-height: auto;
    }
}


@media (max-width: 520px) {
    .solutions-section {
        padding: 50px 0;
    }

    .solutions-section .container {
        padding: 0 18px;
    }

    .solution-card {
        padding: 32px 22px 30px;
        border-radius: 16px;
    }

    .icon-circle {
        width: 82px;
        height: 82px;
        font-size: 27px;
        border-width: 5px;
    }

    .solution-card h3 {
        font-size: 21px;
        margin-bottom: 20px;
    }

    .solution-card li {
        font-size: 15px;
    }
}