.help-section {
    position: relative;

    padding: 85px 0;

    background: #fff;
}


/* ==========================================================
   CABEÇALHO DA SEÇÃO
========================================================== */

.section-heading {
    max-width: 700px;

    margin: 0 auto 48px;
}

.section-eyebrow {
    display: block;

    margin-bottom: 10px;

    color: var(--secondary);

    font-size: .75rem;
    font-weight: 700;

    letter-spacing: .14em;

    text-transform: uppercase;
}

.section-heading h2 {
    margin: 0;

    color: var(--primary);

    font-family: 'Lora', serif;

    font-size: clamp(2rem, 4vw, 2.8rem);

    font-weight: 600;
}

.section-heading p {
    margin: 15px auto 0;

    max-width: 600px;

    color: var(--muted);

    font-size: 1rem;

    line-height: 1.7;
}


/* ==========================================================
   CARD
========================================================== */

.help-card {
    position: relative;

    height: 100%;

    display: flex;

    flex-direction: column;

    padding: 28px 24px 25px;

    background: #fff;

    border: 1px solid #e8edf3;

    border-radius: 18px;

    color: var(--text);

    text-decoration: none;

    overflow: hidden;

    transition:
        transform .25s ease,
        border-color .25s ease,
        box-shadow .25s ease;
}


/* Linha superior */

.help-card::before {
    content: '';

    position: absolute;

    left: 0;
    top: 0;

    width: 100%;
    height: 3px;

    background: var(--secondary);

    transform: scaleX(0);

    transform-origin: left;

    transition: transform .3s ease;
}


/* Hover */

.help-card:hover {
    color: var(--text);

    transform: translateY(-6px);

    border-color: rgba(18,58,112,.15);

    box-shadow:
        0 15px 40px rgba(18,58,112,.10);
}

.help-card:hover::before {
    transform: scaleX(1);
}


/* ==========================================================
   ÍCONE
========================================================== */

.help-icon {
    width: 52px;
    height: 52px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin-bottom: 20px;

    border-radius: 14px;

    background: #f1f5fa;

    color: var(--primary);

    font-size: 1.35rem;

    transition:
        background .25s ease,
        color .25s ease,
        transform .25s ease;
}

.help-card:hover .help-icon {
    background: var(--primary);

    color: #fff;

    transform: scale(1.05);
}


/* ==========================================================
   TEXTO
========================================================== */

.help-content {
    flex: 1;
}

.help-content h3 {
    margin: 0 0 9px;

    color: var(--primary);

    font-family: 'Lora', serif;

    font-size: 1.1rem;

    font-weight: 600;

    line-height: 1.35;
}

.help-content p {
    margin: 0;

    color: var(--muted);

    font-size: .87rem;

    line-height: 1.55;
}


/* ==========================================================
   SETA
========================================================== */

.help-arrow {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 32px;
    height: 32px;

    margin-top: 22px;

    border-radius: 50%;

    background: #f4f6f9;

    color: var(--primary);

    transition:
        background .25s ease,
        color .25s ease,
        transform .25s ease;
}

.help-card:hover .help-arrow {
    background: var(--secondary);

    color: #fff;

    transform: translateX(4px);
}


/* ==========================================================
   RESPONSIVIDADE
========================================================== */

@media (max-width: 767.98px) {

    .help-section {
        padding: 65px 0;
    }

    .section-heading {
        margin-bottom: 32px;
    }

    .help-card {
        padding: 23px 20px;
    }

}

@media (max-width: 575.98px) {

    .help-card {
        min-height: 150px;

        display: grid;

        grid-template-columns: 52px 1fr 32px;

        column-gap: 15px;

        align-items: center;
    }

    .help-icon {
        margin: 0;
    }

    .help-content h3 {
        font-size: 1rem;
    }

    .help-content p {
        font-size: .82rem;
    }

    .help-arrow {
        margin: 0;
    }

}