﻿.promo-banner {
    position: relative;
    width: 100%;
    border-radius: 2px;
    overflow: hidden;
    min-height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}

.promo-banner--color {
    background-color: #b5a478;
    padding: 2rem 3rem;
}

.promo-banner--imagen {
    padding: 2.5rem 3rem;
}

.promo-banner__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
}

.promo-banner__overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.42);
    z-index: 1;
}

.promo-banner__content {
    position: relative;
    z-index: 2;
    color: #ffffff;
}

.promo-banner__titulo {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 700;
    margin-bottom: 0.25rem;
    line-height: 1.2;
}

.promo-banner__descripcion {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    opacity: 0.92;
    margin-bottom: 0;
}

@media (max-width: 576px) {
    .promo-banner--color,
    .promo-banner--imagen {
        padding: 1.5rem 1.25rem;
    }
}
