.promo-banner {
    background: transparent;
    padding: 0;
    margin: 0;
    position: relative;
    overflow: hidden;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}

.promo-banner__container {
    max-width: 100%;
    margin: 0;
    padding: 0;
    position: relative;
    z-index: 2;
    width: 100%;
}

.promo-banner__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.promo-banner__text {
    flex: 1;
    color: white;
}

.promo-banner__title {
    font-family: "Bosch Sans", Arial, sans-serif;
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: white;
}

.promo-banner__value {
    display: flex;
    align-items: baseline;
    margin: 1rem 0;
}

.promo-banner__currency {
    font-family: "Bosch Sans", Arial, sans-serif;
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 900;
    color: #FF0000;
    margin-right: 0.2rem;
}

.promo-banner__amount {
    font-family: "Bosch Sans", Arial, sans-serif;
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 900;
    color: #FF0000;
    line-height: 0.8;
}

.promo-banner__subtitle {
    font-family: "Bosch Sans", Arial, sans-serif;
    font-size: clamp(1rem, 2.5vw, 1.4rem);
    font-weight: 600;
    margin: 0.5rem 0;
    color: white;
}

.promo-banner__brand {
    font-family: "Bosch Sans", Arial, sans-serif;
    font-size: clamp(1.5rem, 4vw, 2.2rem);
    font-weight: 900;
    color: white;
    margin: 0;
}

.promo-banner__tools {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
}

.promo-banner__image-full {
    width: 100%;
    max-width: none;
    height: auto;
    display: block;
    margin: 0;
    object-fit: cover;
}

/* Mobile: Show vertical image, hide horizontal */
.promo-banner__image-mobile {
    display: block;
}

.promo-banner__image-desktop {
    display: none;
}

/* Desktop: Show horizontal image, hide vertical */
@media (min-width: 768px) {
    .promo-banner__image-mobile {
        display: none;
    }

    .promo-banner__image-desktop {
        display: block;
    }
}

.promo-banner__image {
    max-width: 400px;
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

/* Desktop - otimizado para 1920x768 */
@media (min-width: 1024px) {
    .promo-banner__image {
        max-width: 500px;
    }
}

/* Tablet */
@media (max-width: 1023px) and (min-width: 769px) {
    .promo-banner__image {
        max-width: 350px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .promo-banner__container {
        padding: 0;
    }
    
    .promo-banner__image {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .promo-banner__image {
        max-width: 100%;
    }
}