/* ========================================
   HOME - POR QUE ESCOLHER
======================================== */


.ef-home-why__intro {
    display: flex;
    margin-bottom: 46px;
    justify-content: space-between;
    width: 100%;
    flex-direction: row;
}

.ef-home-why__intro .ef-home-title {
    width: 100%;
}

.ef-home-why__intro p {
    margin: 0px 0 0;
    color: rgba(255, 255, 255, 0.86);
    font-family: 'Montserrat', sans-serif;
    max-width: 28rem;
    line-height: 1.625;
    font-size: 1rem;
}

.ef-home-reason-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}

.ef-home-reason-card {
    position: relative;
    min-height: 290px;
    padding: 20px 30px;
    overflow: hidden;
    border: 1px solid rgb(39, 39, 42);
    border-radius: 14px;
    background-color: #000;
    transition: box-shadow 0.4s ease, border-color 0.4s ease, transform 0.4s ease;
    padding: 3rem;
}

.ef-home-reason-card::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    border-radius: 14px;
    background: linear-gradient(120deg,
            rgba(249, 242, 149, 0.03),
            rgba(225, 172, 65, 0.04),
            rgba(249, 242, 149, 0.03));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.ef-home-reason-card::after {
    content: "";
    position: absolute;
    inset: 0;
    padding: 1px;
    border-radius: 14px;
    background: linear-gradient(135deg, #F9F295, #E1AC41, #F9F295, #E1AC41);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.ef-home-reason-card>* {
    position: relative;
    z-index: 1;
    margin-bottom: 20px;
    margin-top: 9px;
}

.ef-home-reason-card:hover {
    border-color: transparent;
    box-shadow: 0 0 25px rgba(225, 172, 65, 0.2);
}

.ef-home-reason-card:hover::before,
.ef-home-reason-card:hover::after {
    opacity: 1;
}

.ef-home-reason-card__icon {
    display: inline-flex;
    width: 54px;
    height: 54px;
    color: #fff;
}

.ef-home-reason-card__icon svg {
    width: 54px;
    height: 54px;
}

.ef-home-reason-card h3 {
    margin: 15px 0 0;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.025em;
    font-weight: 700;
    font-size: 1.25rem;
    line-height: 1.75rem;
}

.ef-home-reason-card__divider {
    display: block;
    width: 44px;
    height: 2px;
    margin: 18px 0;
    background: linear-gradient(90deg, #F9F295, #E1AC41);
}

.ef-home-reason-card p {
    margin: 0;
    color: #F0F0F0;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    line-height: 1.625;
}

@media (max-width: 991px) {
    .ef-home-reason-grid {
        grid-template-columns: 1fr;
    }

    .ef-home-why__intro {
        max-width: 100%;
    }
}

@media (max-width: 767px) {
    .ef-home-why {
        padding-top: 64px;
    }

    .ef-home-why__intro {
        margin-bottom: 34px;
    }

    .ef-home-why__intro p {
        font-size: 1rem;
        line-height: 1.7;
    }

    .ef-home-reason-card {
        min-height: auto;
        padding: 24px 22px;
    }

    .ef-home-why__intro {
        flex-direction: column;
    }

    .ef-home-why__intro .ef-home-title {
        font-size: 1.5rem;
        margin-bottom: 30px;
    }
}