/* =========================================
   SEÇÃO — PROBLEMAS
========================================= */

.problems-section {
    position: relative;

    /* padding: 120px 0; */

    background: #ffffff;
    color: #0f1b26;
}


/* =========================================
   CABEÇALHO
========================================= */

.section-eyebrow {
    display: inline-flex;
    align-items: center;

    margin-bottom: 18px;

    color: #008679;

    font-size: 13px;
    font-weight: 700;

    letter-spacing: .08em;
    text-transform: uppercase;
}


.section-eyebrow::before {
    content: "";

    width: 28px;
    height: 2px;

    margin-right: 10px;

    background: #02beb2;
}


.section-title {
    margin: 0;

    color: #0f1b26;

    /* font-size: clamp(36px, 4vw, 52px);
    line-height: 1.08;

    font-weight: 700; */

    letter-spacing: -.03em;
}


.section-description {
    max-width: 680px;

    margin: 22px auto 0;

    color: #66727d;

    font-size: 17px;
    line-height: 1.7;
}


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

.problem-card {
    height: 100%;

    overflow: hidden;

    background: #ffffff;

    border: 1px solid #e6ebed;
    border-radius: 14px;

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


.problem-card:hover {
    transform: translateY(-7px);

    border-color: rgba(2, 190, 178, .45);

    box-shadow:
        0 20px 50px rgba(15, 27, 38, .10);
}


/* =========================================
   IMAGEM
========================================= */

.problem-image {
    position: relative;

    height: 310px;

    overflow: hidden;

    background: #0f1b26;
}


.problem-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        transform .6s ease,
        opacity .4s ease;
}


.problem-card:hover .problem-image img {
    transform: scale(1.05);
}


/* Overlay */

.problem-image::after {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(15, 27, 38, 0) 40%,
            rgba(15, 27, 38, .65) 100%
        );

    pointer-events: none;
}


/* =========================================
   NÚMERO
========================================= */

.problem-number {
    position: absolute;

    z-index: 2;

    top: 18px;
    right: 18px;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 42px;
    height: 42px;

    border-radius: 50%;

    background: #02beb2;
    color: #0f1b26;

    font-size: 12px;
    font-weight: 800;

    box-shadow:
        0 8px 20px rgba(2, 190, 178, .25);
}


/* =========================================
   CONTEÚDO
========================================= */

.problem-content {
    padding: 28px 28px 30px;
}


.problem-label {
    display: block;

    margin-bottom: 10px;

    color: #008679;

    font-size: 11px;
    font-weight: 800;

    letter-spacing: .08em;
    text-transform: uppercase;
}


.problem-content h3 {
    margin: 0 0 13px;

    color: #0f1b26;

    font-size: 21px;
    line-height: 1.3;

    font-weight: 700;
}


.problem-content p {
    margin: 0;

    color: #687681;

    font-size: 14px;
    line-height: 1.65;
}


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

@media (max-width: 991.98px) {

    .problems-section {
        padding: 90px 0;
    }

}


@media (max-width: 767.98px) {

    .problems-section {
        padding: 75px 0;
    }

    .section-title {
        font-size: 38px;
    }

    .section-description {
        font-size: 16px;
    }

}


@media (max-width: 575.98px) {

    .problems-section {
        padding: 65px 0;
    }

    .section-title {
        font-size: 34px;
    }

    .problem-image {
        height: 280px;
    }

    .problem-content {
        padding: 24px;
    }

}