/* ========================
   REABASTECIMENTO
   ======================== */
.reabastecimento {
    display: flex;
    min-height: var(--section-min-height);
    background: #D42631;
    align-items: center;
    position: relative;
    padding: var(--section-padding);
}

.reabastecimento-container {
    max-width: var(--container-max-width);
    width: 90%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
    padding: var(--container-padding);
    z-index: 9;
}

/* Monitor */
.reabastecimento-monitor {
    flex-shrink: 0;
    position: relative;
}

.reabastecimento-monitor img {
    width: 580px;
    height: auto;
    display: block;
    position: relative;
    z-index: 1;
}

.reabastecimento-monitor-video {
    position: absolute;
    top: 4.5%;
    left: 4%;
    width: 92%;
    height: 60%;
    object-fit: cover;
    z-index: 2;
}

/* Info */
.reabastecimento-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
    color: #fff;
    font-family: var(--font-family);
}

.reabastecimento-titulo {
    font-size: var(--title-size);
    font-weight: 300;
    line-height: 1.1;
    text-transform: uppercase;
}

.reabastecimento-titulo strong {
    font-weight: 800;
}

.reabastecimento-subtitulo {
    font-size: var(--subtitle-size);
    font-weight: 400;
    text-transform: uppercase;
    line-height: 1.5;
}

.reabastecimento-subtitulo strong {
    font-weight: 800;
}

.reabastecimento-descricao {
    font-size: var(--text-size);
    line-height: 1.6;
}

.reabastecimento-descricao strong {
    font-weight: 700;
}

.reabastecimento-lista {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: var(--text-size);
}

.reabastecimento-lista li {
    display: flex;
    align-items: center;
    gap: 12px;
}

.reabastecimento-lista li::before {
    content: "\2713";
    min-width: 28px;
    height: 28px;
    background: #272727;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #fff;
    flex-shrink: 0;
}

.reabastecimento-cta {
    font-size: var(--text-size);
    line-height: 1.5;
}

.reabastecimento-cta a {
    color: #fff;
    font-weight: 700;
    text-decoration: underline;
}