#oss-latam-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #6F3592;
    z-index: 99999;
    padding: 18px 20px;
    box-sizing: border-box;
    box-shadow: 0 -2px 12px rgba(0,0,0,0.15);
}

.oss-latam-banner-inner {
    max-width: 1140px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    position: relative;
}

.oss-latam-left {
    flex: 1;
}

.oss-latam-text {
    color: white;
    font-size: 14px;
    font-family: Inter, sans-serif;
    font-weight: 400;
    line-height: 18.5px;
}

.oss-latam-text a {
    color: white;
    text-decoration: underline;
    margin-left: 4px;
}

.oss-latam-right {
    display: flex;
    gap: 20px;
    align-items: center;
}

.oss-latam-pill {
    padding: 4px 12px;
    background: rgba(255,255,255,0.90);
    border-radius: 16px;
    color: #6F3592;
    font-size: 12px;
    font-family: Inter, sans-serif;
    text-decoration: none;
    line-height: 14.5px;
    white-space: nowrap;
}

.oss-latam-close {
    background: transparent;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    margin-left: 10px;
    line-height: 1;
}

body.oss-latam-banner-active {
    padding-bottom: 72px;
}

@media (max-width: 768px) {

    #oss-latam-banner {
        padding: 18px 16px 20px;
    }

    .oss-latam-banner-inner {
        position: relative;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    .oss-latam-left {
        width: 100%;
    }

    .oss-latam-text {
        color: #FFF;
        text-align: center;
        font-size: 14px;
        line-height: 1.5;
        padding-right: 34px; /* space for close button */
    }

    .oss-latam-right {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        gap: 10px;
        margin-top: 14px;
    }

    .oss-latam-pill {
        text-align: center;
    }

    .oss-latam-close {
        position: absolute;
        top: -2px;
        right: -2px;
        width: 28px;
        height: 28px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-left: 0;
        z-index: 10;
    }
    
    body.oss-latam-banner-active {
        padding-bottom: 120px;
    }
}