#banner-superior {
    background-color: #fff;
    width: 100%;
    padding-top: 5px;
    position: relative;
    z-index: 1000;
}

.banner-superior-container {
    width: 100%;
    margin: 0 auto;
    padding: 0;

    a{
        color: #1E3ABC;

        &:hover{
            color: #1E3ABC;
        }
    }

}

.banner-superior-left {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 20px;
}

.banner-link {
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: opacity 0.3s ease;
}

.banner-link:hover {
    opacity: 0.8;
    color: white;
}

.whatsapp-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.whatsapp-link img {
    vertical-align: middle;
    width: 24px;
    height: 24px;
}

@media (max-width: 768px) {
    
    .banner-link {
        font-size: 14px;
    }

    .whatsapp-link svg {
        width: 24px;
        height: 24px;
    }
}
