/* Promo / Banner Styles - FarmaciaDG */

.banner-main {
    background: linear-gradient(90deg, #1a1a1a 0%, #333 100%);
    border-radius: 12px;
    padding: 60px;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    overflow: hidden;
    margin-top: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.banner-content {
    z-index: 2;
    max-width: 60%;
}

.banner-content h2 {
    font-size: 1.2rem;
    font-weight: 400;
    color: #bbb;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.banner-content h1 {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 20px;
    color: var(--offer-color);
}

/* Responsive Promo */
@media (max-width: 1024px) {
    .banner-main {
        padding: 40px;
    }

    .banner-content h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .banner-main {
        flex-direction: column;
        text-align: center;
        padding: 30px;
    }

    .banner-content {
        max-width: 100%;
        margin-bottom: 20px;
    }

    .banner-content h1 {
        font-size: 1.8rem;
    }
}