/* =========================================
   SEÇÃO 3 — BENEFÍCIOS
========================================= */

.benefits-section {
    position: relative;

    overflow: hidden;

    /* padding: 120px 0; */

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


/* =========================================
   DETALHE DECORATIVO
========================================= */

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

    position: absolute;

    width: 500px;
    height: 500px;

    top: -250px;
    right: -180px;

    border-radius: 50%;

    border: 1px solid rgba(2, 190, 178, .10);

    pointer-events: none;
}


.benefits-section::after {
    content: "";

    position: absolute;

    width: 350px;
    height: 350px;

    bottom: -220px;
    left: -180px;

    border-radius: 50%;

    background: rgba(2, 190, 178, .06);

    filter: blur(40px);

    pointer-events: none;
}


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

.benefits-eyebrow {
    color: #02beb2;
}


.benefits-title {
    color: #ffffff;
}


.benefits-description {
    color: rgba(255, 255, 255, .62);
}


/* =========================================
   CARDS
========================================= */

.benefit-card {
    position: relative;

    height: 100%;

    min-height: 265px;

    padding: 34px;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    overflow: hidden;

    background: rgba(255, 255, 255, .035);

    border: 1px solid rgba(255, 255, 255, .09);

    border-radius: 14px;

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


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

    background: rgba(2, 190, 178, .07);

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

    box-shadow:
        0 25px 60px rgba(0, 0, 0, .20);
}


/* =========================================
   ÍCONE
========================================= */

.benefit-icon {
    width: 70px;
    height: 70px;

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

    margin-bottom: 35px;

    border-radius: 12px;

    color: #02beb2;

    background: rgba(2, 190, 178, .10);

    border: 1px solid rgba(2, 190, 178, .16);

    font-size: 34px;

    transition:
        background .35s ease,
        color .35s ease,
        transform .35s ease;
}


.benefit-card:hover .benefit-icon {
    color: #0f1b26;

    background: #02beb2;

    transform: scale(1.05);
}


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

.benefit-content {
    position: relative;
    z-index: 2;
}


.benefit-content h3 {
    margin: 0 0 12px;

    color: #ffffff;

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

    font-weight: 700;
}


.benefit-content p {
    max-width: 330px;

    margin: 0;

    color: rgba(255, 255, 255, .58);

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


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

.benefit-number {
    position: absolute;

    top: 25px;
    right: 28px;

    color: rgba(255, 255, 255, .14);

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

    letter-spacing: .08em;
}


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

@media (max-width: 991.98px) {

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

}


@media (max-width: 767.98px) {

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

    .benefit-card {
        min-height: 240px;

        padding: 28px;
    }

}


@media (max-width: 575.98px) {

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

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

}