/* CORES E ESTILOS DE FONTE DOS BENEFICIOS */

.benefits {
    background: #e8eef6;
    padding: 64px 32px 72px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.benefits__header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 48px;
}

.benefits__title {
    font-size: clamp(24px, 4vw, 34px);
    font-weight: 400;
    color: #e0197d;
    line-height: 1.3;
    margin-bottom: 24px;
}

.benefits__title strong {
    font-weight: 800;
    color: #e0197d;
}

.benefits__divider {
    border: none;
    border-top: 1.5px solid #d0d0d0;
    width: 100%;
    max-width: 250px;
    margin: 0 auto;
}

.benefits__grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 32px 24px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: start;
}

.benefits__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
}

.benefits__logo-wrapper {
    height: 90px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefits__logo-wrapper img {
    max-height: 90px;
    max-width: 100%;
    width: auto;
    object-fit: contain;
}

.benefits__logo-placeholder {
    height: 70px;
    width: 140px;
    max-width: 100%;
    border: 2px dashed #ddd;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    color: #aaa;
    font-style: italic;
    background: #fafafa;
    user-select: none;
}

.benefits__description {
    font-size: clamp(14px, 1.5vw, 15px);
    color: #888888;
    line-height: 1.6;
}

.benefits__description strong {
    color: #333333;
    font-weight: 700;
}

@media (max-width: 1024px) {
    .benefits__grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 48px 24px;
    }
}

@media (max-width: 640px) {
    .benefits {
        padding: 48px 20px 60px;
    }

    .benefits__header {
        margin: 0 auto 40px;
    }

    .benefits__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 16px;
    }
}

@media (max-width: 400px) {
    .benefits__grid {
        grid-template-columns: 1fr;
        max-width: 280px;
    }
}