/*DIFFERENTIALS LAYOUT, ESTILOS, FONTES E TAMANHOS */

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

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

.differentials__title {
    font-size: clamp(22px, 3vw, 36px);
    font-weight: 400;
    color: #e0197d;
    margin-bottom: 24px;
    line-height: 1.3;
}

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

.differentials__divider {
    border: none;
    border-top: 1.5px solid #c5cfe0;
    width: 80%;
    margin: 0 auto;
}

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

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

/* ---- Círculo do ícone ---- */
.differentials__icon-wrapper {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    border: 1.5px solid #c5cfe0;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: box-shadow 0.22s, border-color 0.22s, transform 0.22s;
}

.differentials__item:hover .differentials__icon-wrapper {
    box-shadow: 0 8px 28px rgba(26, 95, 168, 0.15);
    border-color: #1a5fa8;
    transform: translateY(-4px);
}

.differentials__icon-wrapper img {
    width: 145px;
    height: 132px;
    object-fit: contain;
    display: block;
}

.differentials__description {
    font-size: 18px;
    color: #555555;
    line-height: 1.65;
}

.differentials__description strong {
    font-weight: 700;
    color: #e0197d;
}

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

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

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

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