.ba-banner-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    min-height: 380px;
    margin: 0 auto;
    border-radius: 28px;
    overflow: hidden;
    background-color: #f7ede8;
    background-size: cover;
    background-position: center right;
    display: flex;
    align-items: center;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

.ba-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(248, 237, 233, 0.92) 0%, rgba(248, 237, 233, 0.75) 45%, rgba(248, 237, 233, 0) 80%);
    z-index: 1;
}

.ba-contenido {
    position: relative;
    z-index: 2;
    padding: 40px 50px;
    max-width: 550px;
}

.ba-titulo {
    margin: 0 0 15px 0;
    line-height: 1.1;
    color: #6a4f4b;
}

.ba-t1 {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 3.2rem;
    font-weight: 400;
    letter-spacing: -0.5px;
}

.ba-t2 {
    display: block;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 3.4rem;
    font-weight: 400;
}

.ba-bajada {
    font-size: 0.95rem;
    color: #4a3e3c;
    margin: 0 0 30px 0;
    line-height: 1.4;
    font-weight: 400;
    max-width: 380px;
}

.ba-botones {
    display: flex;
    gap: 15px;
    align-items: center;
}

.ba-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.ba-btn-wa {
    background-color: #556b43;
    color: #ffffff;
    border: 1px solid #556b43;
}

.ba-btn-wa:hover {
    background-color: #435534;
    color: #ffffff;
    transform: translateY(-2px);
}

.ba-btn-wa i {
    font-size: 1.2rem;
}

.ba-btn-catalogo {
    background-color: transparent;
    color: #6a4f4b;
    border: 1px solid #9c7b74;
}

.ba-btn-catalogo:hover {
    background-color: #6a4f4b;
    color: #ffffff;
    transform: translateY(-2px);
}

@media (max-width: 850px) {
    .ba-banner-container {
        border-radius: 16px;
        min-height: auto;
    }

    .ba-overlay {
        background: linear-gradient(180deg, rgba(248, 237, 233, 0.95) 0%, rgba(248, 237, 233, 0.8) 100%);
    }

    .ba-contenido {
        padding: 30px 20px;
        max-width: 100%;
    }

    .ba-t1 {
        font-size: 2.2rem;
    }

    .ba-t2 {
        font-size: 2.4rem;
    }

    .ba-botones {
        flex-direction: column;
        align-items: stretch;
    }

    .ba-btn {
        justify-content: center;
    }
}
