/* ─── FAIXA PROMOCIONAL ──────────────────────────────────────────────────── */

.pfc-faixa {
    width: 100%;
    text-align: center;
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: .03em;
}

.pfc-faixa p {
    margin: 0;
}

/* ─── BANNER PRINCIPAL ───────────────────────────────────────────────────── */

.pfc-banner {
    width: 100%;
    min-height: 480px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    position: relative;
}

/* Overlay escuro para legibilidade do texto */
.pfc-banner::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .35);
}

.pfc-banner__conteudo {
    position: relative;
    z-index: 1;
    padding: 40px 60px;
    max-width: 680px;
    color: #fff;
}

.pfc-banner__titulo {
    font-size: clamp(28px, 4vw, 52px);
    font-weight: 700;
    line-height: 1.15;
    margin: 0 0 16px;
    color: #fff;
}

.pfc-banner__sub {
    font-size: clamp(16px, 2vw, 22px);
    margin: 0 0 28px;
    opacity: .9;
    color: #fff;
}

.pfc-banner__btn {
    display: inline-block;
    padding: 14px 32px;
    background: var(--cor-principal, #222);
    color: #fff !important;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    text-decoration: none !important;
    transition: opacity .2s;
}

.pfc-banner__btn:hover {
    opacity: .85;
}

/* Mobile */
@media (max-width: 768px) {
    .pfc-banner {
        min-height: 320px;
    }

    .pfc-banner__conteudo {
        padding: 32px 24px;
    }
}
