/* =========================
   EQUIPMENTS SECTION
========================= */
.equipments{
    background: #FFFFFF;
    color: var(--metal);

    /* principal ajuste de espaço */
    padding: 75px 0;
}

/* =========================
   HEADER
========================= */
.equipments-header{
    text-align: center;
    max-width: 980px;
    margin: 0 auto;
}

.equipments-header .eyebrow{
    font-size: .94rem;
    letter-spacing: .24em;
    text-transform: uppercase;
    margin-bottom: 14px;
    color: var(--metal);
}

.equipments-header h2{
    font-size: clamp(2.3rem, 3vw, 3.8rem);
    line-height: 1.02;

    margin: 0 auto;
    max-width: 760px;

    color: var(--black-abs);
}

/* =========================
   IMAGE / BANNER
========================= */
.equipment-banner{
    margin-top: 32px;
    display: flex;
    justify-content: center;
}

.equipment-banner img{
    width: 100%;
    max-width: 1120px;
    height: auto;
    object-fit: contain;
    display: block;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 992px){
    .equipments{
        padding: 64px 0;
    }

    .equipments-header h2{
        font-size: 2.7rem;
    }

    .equipment-banner{
        margin-top: 28px;
    }
}

@media (max-width: 768px){
    .equipments{
        padding: 48px 0;
    }

    .equipments-header h2{
        font-size: 2.3rem;
    }

    .equipment-banner{
        margin-top: 24px;
    }
}